/* ===== ROOT VARIABLES ===== */
:root {
  --yska-red: #c8102e;
  --yska-red-dark: #a50d25;
  --yska-orange: #e07b00;
  --dark-bg: #111111;
  --footer-bg: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --text-light: #999999;
  --border-color: #e8e8e8;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --site-bg-red: #f0f0f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

/* ===== TICKER BAR ===== */
.ticker-bar {
  background: #111;
  color: #fff;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #333;
}

.ticker-wrapper {
  display: inline-flex;
  gap: 60px;
  animation: ticker-scroll 50s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-item span.highlight {
  color: var(--yska-red);
  font-weight: 600;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== TOPBAR ===== */
.topbar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  font-size: 12px;
  color: #333;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
}

.topbar-item i {
  color: var(--yska-red);
  font-size: 11px;
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: var(--border-color);
}

.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social a {
  color: var(--text-muted);
  font-size: 13px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--yska-red);
  color: #fff;
  border-color: var(--yska-red);
}

/* ===== NAVBAR ===== */
#mainNav {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: var(--shadow-sm);
}

#mainNav.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-bottom: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #111 !important;
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
  opacity: 1 !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  /* background: var(--yska-red); */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--yska-red) !important;
}

.nav-link-contact {
  color: var(--yska-red) !important;
  font-weight: 600 !important;
}

.nav-caret {
  font-size: 9px;
  margin-left: 4px;
  transition: transform 0.3s;
}

.nav-item.dropdown.show .nav-caret {
  transform: rotate(180deg);
}

.nav-right-info {
  display: flex;
  align-items: center;
}

.nav-call-us {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.call-icon {
  width: 40px;
  height: 40px;
  background: var(--yska-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.call-text span {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-text strong {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 700;
}

/* ===== MEGA MENU ===== */
.nav-dropdown.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 880px;
  background: #fff;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 32px 36px;
  display: none;
  z-index: 999;
}

.nav-item.dropdown:hover .nav-dropdown.mega-menu,
.nav-item.dropdown.show .nav-dropdown.mega-menu {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mega-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yska-red);
  margin-bottom: 14px;
  display: block;
  border-bottom: none;
  padding-bottom: 0;
}

.mega-links li {
  margin-bottom: 10px;
}

.mega-links a {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-links a:hover {
  color: var(--yska-red);
  padding-left: 4px;
}

/* ===== SECTION HEADINGS ===== */
.sec-head {
  text-align: center;
  margin-bottom: 40px;
}

.sec-title,
.about-main-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 6px;
}

.sec-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

.about-brand-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yska-red);
  display: block;
  margin-bottom: 8px;
}

.about-brand-tag-red {
  color: var(--yska-red);
}

.red-text {
  color: var(--yska-red);
}

/* Underline accent below section titles */
.sec-head::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--yska-red);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-yska {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yska-red);
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  border: 2px solid var(--yska-red);
  transition: var(--transition);
  cursor: pointer;
}

.btn-yska:hover {
  background: var(--yska-red-dark);
  border-color: var(--yska-red-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-yska-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yska-red);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: var(--transition);
}

.btn-yska-banner:hover {
  background: var(--yska-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.btn-yska-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--yska-red);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  border: 2px solid var(--yska-red);
  transition: var(--transition);
}

.btn-yska-outline:hover {
  background: var(--yska-red);
  color: #fff;
}

/* ===== HERO BANNER ===== */
#home .carousel-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.banner-caption {
  bottom: 40px;
  left: 40px;
  text-align: left;
  right: auto;
}

.carousel-indicators button {
  width: 10px;
  height: 4px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
}

/* .carousel-indicators button.active {
  background: var(--yska-red);
  width: 15px;
  border-radius: 5px;
} */

.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  /* background: rgba(255, 255, 255, 0.15); */
  /* backdrop-filter: blur(4px); */
  /* border-radius: 50%; */
  margin: 0 16px;
  opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--yska-red);
}

/* ===== SHOP BY CATEGORY ===== */
.shop-cat-section {
  padding: 60px 0;
  background: #fff;
}

.feat-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-cat-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.feat-cat-card .feat-cat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feat-cat-card:hover .feat-cat-bg {
  transform: scale(1.06);
}

.feat-cat-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
}

.feat-cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 2;
  color: #fff;
}

.feat-cat-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.feat-cat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  line-height: 1.4;
}

.feat-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--yska-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 4px;
  transition: var(--transition);
}

.feat-cat-card:hover .feat-cat-link {
  background: var(--yska-red);
  color: #fff;
}

.obj-fit-cover {
  object-fit: cover;
}

.shop-view-all-wrap {
  text-align: center;
  margin-top: 32px;
}

/* ===== SHOP MORE ===== */
.shop-more-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.shop-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shop-more-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-decoration: none;
}

.sm-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.shop-more-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

.sm-card-content {
  position: relative;
  z-index: 2;
}

.sm-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: 4px;
  transition: var(--transition);
}

.shop-more-card:hover .sm-card-bg {
  transform: scale(1.07);
}

.shop-more-card:hover .sm-card-link {
  background: var(--yska-red);
  border-color: var(--yska-red);
}

.sm-bg-1 {
  background-image: url('../img/shop-more/shop-more-1.webp');
}

.sm-bg-2 {
  background-image: url('../img/shop-more/shop-more-2.webp');
}

.sm-bg-3 {
  background-image: url('../img/shop-more/shop-more-3.webp');
}

.sm-bg-4 {
  background-image: url('../img/shop-more/shop-more-4.webp');
}

/* ===== ABOUT US ===== */
.about-wrap {
  padding: 70px 0;
  background: #fff;
}

.about-img-side {
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-side {
  padding: 20px 0 20px 40px;
}

.about-content-side .sec-head {
  text-align: left;
}

.about-content-side .sec-head::after {
  margin-left: 0;
}

.about-main-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  text-transform: none;
}

.about-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-stats-row {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 24px 0;
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid var(--border-color);
  background: #f9f9f9;
}

.about-stat:last-child {
  border-right: none;
}

.about-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--yska-red);
  line-height: 1;
}

.about-stat-label {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 31px 0;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/subpage/state-bar-bg-img.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* border-top: 3px solid var(--yska-red); */
}

.stats-strip-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  color: #fff;
  padding: 0 20px;
}

.stat-strip-item i {
  font-size: 1.6rem;
  color: var(--yska-red);
  margin-bottom: 6px;
}

.stat-strip-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-strip-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 0;
  background: #f8f8f8;
}

.product-block {
  padding: 60px 0;
}

.product-block-yska {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}

.product-block-chandelier {
  background: #f8f8f8;
}

.products-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: #f9f9f9;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.products-toolbar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-right: 6px;
}

.products-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.products-chip:hover,
.products-chip-active {
  background: var(--yska-red);
  border-color: var(--yska-red);
  color: #fff;
}



/* Product Carousel */
.product-carousel {
  position: relative;
  padding: 10px 0 60px;
  margin: 0;
  overflow: hidden;
}

.product-track {
  display: flex;
  padding: 10px 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.product-item {
  width: 100%;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

/* Product Navigation Buttons (Premium) */
.product-nav-prev,
.product-nav-next {
  position: absolute;
  bottom: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.product-nav-prev {
  left: 0;
}

.product-nav-next {
  left: 54px;
}

.product-nav-prev:hover,
.product-nav-next:hover {
  background: var(--yska-red);
  color: #fff;
  border-color: var(--yska-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(200, 16, 46, 0.2);
}

.product-nav-prev:active,
.product-nav-next:active {
  transform: translateY(0);
}

.product-dots {
  position: absolute;
  bottom: 18px;
  right: 0;
  display: flex;
  gap: 8px;
}

.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-dot.active {
  background: var(--yska-red);
  width: 24px;
  border-radius: 4px;
}

/* Product Card (Standardized) */
.pcard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  height: 100%;
  color: inherit;
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yska-red);
}

.pcard-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.pcard-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pcard:hover .pcard-img {
  transform: scale(1.08);
}

.pcard-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard-info {
  margin-bottom: 15px;
  flex: 1;
}

.pcard-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.pcard:hover .pcard-title {
  color: var(--yska-red);
}

.pcard-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pcard-action {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f5f5f5;
}

.pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--yska-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

.pcard:hover .pcard-btn {
  gap: 12px;
}

.pcard-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pcard-tag.new {
  background: var(--yska-red);
}

.pcard-tag.featured {
  background: #111;
}

.pcard-tag.arrival {
  background: #000;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview-section {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-preview-card-wrap.pcard .pcard-title {
  font-size: 14px;
}

.blog-more-btn {
  margin-top: 30px;
}

/* Grid Systems */
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pcard-grid-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1199px) {
  .pcard-grid-catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {

  .pcard-grid,
  .pcard-grid-catalog,
  .yska-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {

  .pcard-grid,
  .pcard-grid-catalog,
  .yska-listing-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCT LISTING SECTION ===== */
.yska-listing-section {
  padding: 100px 0;
  background: #ffffff;
}

.yska-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 60px 0;
  background: url('../img/subpage/subpage-bg.jpg') center/cover no-repeat fixed;
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 0;
}

.why-section>.container {
  position: relative;
  z-index: 1;
}

.why-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.why-feature-box {
  text-align: center;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.why-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(200, 16, 46, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.why-feature-icon {
  font-size: 2.8rem;
  color: var(--yska-red);
  margin-bottom: 16px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(200, 16, 46, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.15);
}

.why-feature-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.5px;
}

.why-feature-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 500;
}

.why-center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-center-image img,
.why-center-image-img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.why-center-image img:hover,
.why-center-image-img:hover {
  transform: scale(1.03);
}

/* ===== SMART CTA ===== */
.cta-section.smart-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: #fff;
  overflow: hidden;
}

.smart-cta-text-box {}

.smart-cta-main-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: left;
}

.smart-cta-red-text {
  color: var(--yska-red);
}

.smart-cta-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  text-align: left;
}

.smart-cta-feat-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.smart-cta-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.smart-cta-icon-outer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}

.smart-cta-icon-outer.red-border {
  border-color: var(--yska-red);
  color: var(--yska-red);
}

.smart-cta-icon-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smart-cta-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yska-red);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
}

.smart-cta-link-btn:hover {
  background: var(--yska-red-dark);
  color: #fff;
  transform: translateY(-2px);
}

.smart-cta-img-container {
  position: relative;
  text-align: center;
}

.smart-cta-glowing-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 16, 46, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.smart-cta-photo {
  position: relative;
  z-index: 1;
  max-height: 400px;
}


/* ===== CLIENTS ===== */
.clients-section {
  padding: 50px 0;
  background: #f8f8f8;
  border-top: 1px solid var(--border-color);
}



/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.cp-main-section {
  padding: 60px 0;
  background: #fff;
}

.contact-info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.map-divider {
  width: 100%;
  line-height: 0;
}

.map-iframe {
  border: none;
  width: 100%;
}

.contact-info-panel {
  background: var(--footer-bg);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info-panel-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
}

.contact-info-list {
  flex: 1;
}

.contact-info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.contact-info-list a {
  color: #fff;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-info-list li div {
  font-size: 13px;
  line-height: 1.5;
}

.contact-panel-social {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-panel-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.contact-panel-social a:hover {
  background: #fff;
  color: var(--yska-red);
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact-form-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
  color: var(--text-dark);
}

.cf-input {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: #fff;
}

.cf-input:focus {
  outline: none;
  border-color: var(--yska-red);
}

.cf-select {
  appearance: none;
  cursor: pointer;
}

.cf-textarea {
  resize: vertical;
  min-height: 80px;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--footer-bg);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.cf-submit:hover {
  background: var(--yska-red-dark);
  transform: translateY(-1px);
}

.math-captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.math-captcha-question {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.math-captcha-refresh {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

.math-captcha-refresh:hover {
  color: var(--yska-red);
  transform: rotate(180deg);
}

.math-captcha-input {
  max-width: 120px;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 60px 0 0;
}

.footer-body {
  padding-bottom: 40px;
}

.footer-col {
  padding: 0 15px;
}

.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-follow-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.fs-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.fs-link:hover {
  background: var(--yska-red);
  color: #fff;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yska-red);
  padding-left: 4px;
}

.nav-drop-icon {
  font-size: 9px;
  color: var(--yska-red);
}

.footer-info-table {
  width: 100%;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-info-table tr {
  vertical-align: top;
}

.footer-info-table td {
  padding: 5px 8px 5px 0;
}

.footer-info-table .fit-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  width: 70px;
}

.footer-info-table a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-info-table a:hover {
  color: var(--yska-red);
}

.footer-bottom {
  background: #111;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FIXED CONTACT BTNS ===== */
.fixed-contact-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixed-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.fixed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.fixed-btn i {
  font-size: 16px;
}

.fixed-btn-wa {
  background: #25d366;
}

.fixed-btn-call {
  background: var(--yska-red);
}

/* ===== SUBPAGE HERO (Premium) ===== */
.page-hero {
  position: relative;
  padding: 70px 0 53px;
  background: linear-gradient(135deg, rgba(6, 18, 35, 0.85) 0%, rgba(6, 18, 35, 0.65) 100%), url('../img/subpage/subpage-bg.jpg') center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  overflow: hidden;
  /* border-bottom: 4px solid var(--yska-red); */
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 20% 50%, rgba(200, 16, 46, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(26, 58, 107, 0.15) 0%, transparent 50%);
  backdrop-filter: blur(2px); */
  z-index: 1;
}

.page-hero-inner {
  position: relative;
  z-index: 10;
}

.page-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 11;
}

@keyframes heroTitleFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Breadcrumbs (Premium) */
.page-breadcrumb {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.page-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
  list-style: none;
}

.page-breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.page-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-decoration: none;
}

.page-breadcrumb .breadcrumb-item a:hover {
  color: var(--yska-red);
}

.page-breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 700;
}

.page-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
  content: "›";
  font-size: 18px;
  line-height: 1;
  padding: 0 12px;
}

/* ===== INTERNAL PAGES: MV, Blog, Gallery, CTA ===== */
.mv-section {
  padding: 60px 0;
  background: #fff;
}

.mv-card {
  padding: 30px;
  border-radius: var(--radius-md);
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.mv-icon-red {
  background: rgba(200, 16, 46, 0.1);
  color: var(--yska-red);
}

.mv-icon-dark {
  background: rgba(0, 0, 0, 0.08);
  color: #111;
}

.mv-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
}

.mv-card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

.mv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #555;
}

.mv-list i {
  color: var(--yska-red);
}

.cta-section {
  padding: 50px 0;
  background: var(--yska-red);
  color: #fff;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
}

.cta-subtitle {
  font-size: 13px;
  opacity: 0.9;
  margin: 0;
  text-align: left;
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

.btn-cta-primary {
  background: #fff;
  color: var(--yska-red);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
}

.btn-cta-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
}

.blog-page-section {
  padding: 60px 0;
  background: #fff;
}

.blog-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.sidebar-widget {
  background: #f9f9f9;
  padding: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: left;
}

.sidebar-search {
  display: flex;
}

.sidebar-search-btn {
  background: var(--yska-red);
  color: #fff;
  border: none;
  padding: 0 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.sidebar-recent-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.sidebar-recent-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.sidebar-recent-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  text-align: left;
  line-height: 1.4;
}

.sidebar-recent-date {
  font-size: 11px;
  color: var(--text-light);
}

/* Gallery */
.gallery-section {
  padding: 60px 0;
  background: #fff;
}

.gallery-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  pointer-events: none;
}

.gallery-card-overlay i {
  color: #fff;
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s;
}

.gallery-card:hover .gallery-card-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.gallery-card:hover .gallery-card-overlay i {
  opacity: 1;
  transform: scale(1);
}

.gallery-card-caption {
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.gallery-view-all {
  text-align: center;
  padding-top: 4px;
}

.gallery-view-all a {
  font-size: 13px;
  font-weight: 700;
  color: var(--yska-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.gf-btn {
  padding: 7px 18px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.gf-btn:hover {
  border-color: var(--yska-red);
  color: var(--yska-red);
}

.gf-btn.active {
  background: var(--yska-red);
  border-color: var(--yska-red);
  color: #fff;
}

.gallery-pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-pg-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.25s;
}

.gallery-pg-item:hover {
  box-shadow: var(--shadow-md);
}

.gallery-pg-item.hidden {
  display: none;
}

.gallery-pg-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-pg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.gallery-pg-item:hover .gallery-pg-img {
  transform: scale(1.06);
}

.gallery-pg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 40px;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  pointer-events: none;
}

.gallery-pg-overlay i {
  color: #fff;
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s;
}

.gallery-pg-item:hover .gallery-pg-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.gallery-pg-item:hover .gallery-pg-overlay i {
  opacity: 1;
  transform: scale(1);
}

.gallery-pg-caption {
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

/* Lightbox */
.glb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.glb-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.glb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.glb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}

.glb-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-align: center;
}

.glb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: var(--transition);
}

.glb-close:hover {
  background: var(--yska-red);
  border-color: var(--yska-red);
}

.glb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: var(--transition);
}

.glb-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.glb-prev {
  left: 16px;
}

.glb-next {
  right: 16px;
}

/* Testimonials */
.testimonial-section {
  padding: 60px 0;
  background: #fff;
}

.testi-carousel-inner {
  padding: 8px 0 16px;
}

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #ccc;
}

.testi-quote i {
  font-size: 1.2rem;
  color: var(--yska-red);
  opacity: 0.2;
}

.testi-text {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  flex: 1;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yska-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-info {
  flex: 1;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.testi-role {
  font-size: 11px;
  color: #aaa;
}

.testi-stars {
  display: flex;
  gap: 2px;
}

.testi-stars i {
  font-size: 10px;
  color: #f5a623;
}

.testi-brand-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}

.testi-tag-yska {
  background: rgba(200, 16, 46, 0.07);
  color: var(--yska-red);
}

.testi-ctrl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-color);
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.testi-ctrl:hover {
  background: var(--yska-red);
  color: #fff;
  border-color: var(--yska-red);
}

.testi-ctrl-prev {
  left: -16px;
}

.testi-ctrl-next {
  right: -16px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  background: var(--yska-red);
  width: 22px;
  border-radius: 4px;
}

/* Brands */
.brands-strip {
  background: linear-gradient(135deg, rgba(18, 28, 48, 0.95), rgba(18, 28, 48, 0.95));
  padding: 40px 0;
}

.brands-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.brands-strip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.brands-strip-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.brand-logo-img:hover {
  opacity: 1;
}

.brand-logo-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.brands-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
}

.dark-stats-bar {
  background: #111;
  padding: 30px 0;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview-section {
  padding: 60px 0;
  background: #f8f8f8;
}

.blog-preview-title {
  text-align: center;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-preview-card-wrap {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===== CERTIFICATES SECTION ===== */
.certificate-section {
  padding: 60px 0;
  background: #fff;
}

.certificate-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
  margin-top: 30px;
}

.certificate-track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.certificate-item {
  flex: 0 0 calc(100% / 4 - 20px);
  margin-right: 20px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.certificate-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.certificate-item:hover img {
  transform: scale(1.05);
}

.cert-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.cert-nav:hover {
  background: var(--yska-red);
  color: #fff;
  border-color: var(--yska-red);
}

.cert-nav-prev {
  left: 0;
}

.cert-nav-next {
  right: 0;
}

.cert-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.cert-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.cert-dot.active {
  background: var(--yska-red);
  transform: scale(1.2);
}

/* ===== OUR CLIENTS SECTION ===== */
.clients-section {
  padding: 60px 0;
  background: #f8f8f8;
  overflow: hidden;
}

.client-logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 120px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s;
}

.client-logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.faq-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('../img/subpage/subpage-bg.jpg') center/cover no-repeat;
  opacity: 0.03;
  pointer-events: none;
}

.faq-container {
  position: relative;
  z-index: 1;
}

.faq-left-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.faq-stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-stat-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--yska-red);
  min-width: 120px;
}

.faq-stat-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.faq-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: var(--yska-red);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  color: var(--yska-red);
}

.faq-item.active .faq-question {
  color: var(--yska-red);
  background: rgba(200, 16, 46, 0.03);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
  font-size: 14px;
}

.faq-item.active .faq-icon {
  background: var(--yska-red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px dashed var(--border-color);
}

/* ===== BLOG DETAIL PAGE ===== */
.bd-section {
  padding: 80px 0;
  background: #fff;
}

.bd-article {
  margin-bottom: 50px;
}

.bd-featured-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.bd-featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.bd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.bd-meta-item {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-meta-item i {
  color: var(--yska-red);
}

.bd-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.3;
}

.bd-content {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.bd-lead {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}

.bd-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.bd-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 30px 0 15px;
}

.bd-content p {
  margin-bottom: 20px;
}

.bd-content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.bd-content ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

.bd-content ul li strong {
  color: var(--text-dark);
}

.bd-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.bd-share-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.bd-share-btns {
  display: flex;
  gap: 10px;
}

.bd-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}

.bd-share-fb {
  background: #3b5998;
}

.bd-share-tw {
  background: #1da1f2;
}

.bd-share-wa {
  background: #25d366;
}

.bd-share-li {
  background: #0077b5;
}

.bd-share-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  color: #fff;
}

.bd-related {
  margin-top: 50px;
}

.bd-related-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

/* ===== BLOG SIDEBAR ===== */
.sticky-sidebar {
  position: sticky;
  top: 120px;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background: #f8f8f8;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.sidebar-widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--yska-red);
}

.sidebar-search {
  display: flex;
  position: relative;
}

.sidebar-search-input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 50px 0 20px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.sidebar-search-input:focus {
  border-color: var(--yska-red);
}

.sidebar-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  transition: color 0.3s;
}

.sidebar-search-btn:hover {
  color: var(--yska-red);
}

.sidebar-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-cat-list li {
  margin-bottom: 12px;
}

.sidebar-cat-list li:last-child {
  margin-bottom: 0;
}

.sidebar-cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.3s;
}

.sidebar-cat-list a:hover {
  color: var(--yska-red);
}

.sidebar-cat-list a i {
  font-size: 12px;
  margin-right: 8px;
  color: var(--yska-red);
}

.sidebar-cat-list a span {
  background: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid var(--border-color);
}

.sidebar-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-recent-item {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
}

.sidebar-recent-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.sidebar-recent-info {
  flex: 1;
}

.sidebar-recent-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.3s;
}

.sidebar-recent-item:hover .sidebar-recent-title {
  color: var(--yska-red);
}

.sidebar-recent-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.sidebar-cta {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  padding: 40px 30px;
  border: none;
}

.sidebar-cta-title {
  color: #fff;
  margin-bottom: 15px;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-cta-title::after {
  display: none;
}

.sidebar-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== MODALS (Next-Level Design) ===== */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.pd-modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-width: 500px;
  margin: auto;
  animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pd-modal-header {
  padding: 16px 24px;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-modal-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.pd-modal-cancel {
  background: #f5f5f5;
  border: none;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

.pd-modal-cancel:hover {
  background: #eee;
  color: var(--text-dark);
  transform: translateY(-1px);
}

.pd-modal-body {
  padding: 24px 30px 30px;
}

.pd-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: -0.5px;
}

.pd-modal-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.pd-modal-input {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.pd-modal-input:focus {
  border-color: var(--yska-red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
  outline: none;
}

.pd-modal-textarea {
  min-height: 100px;
  resize: vertical;
}

.pd-modal-submit {
  width: 100%;
  background: var(--yska-red);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 10px;
  box-shadow: 0 10px 20px rgba(200, 16, 46, 0.2);
}

.pd-modal-submit:hover {
  background: var(--yska-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(200, 16, 46, 0.3);
}

.pd-modal-submit i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.pd-modal-submit:hover i {
  transform: translateX(4px);
}

.math-captcha {
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid #eee;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .pd-modal-body {
    padding: 24px 20px 30px;
  }

  .pd-modal-header {
    padding: 20px;
  }

  .pd-modal-title {
    font-size: 1.5rem;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .feat-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-more-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pcard-grid,
  .pcard-grid-catalog {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-card-grid,
  .gallery-pg-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testi-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-color);
    z-index: 999;
  }

  .nav-dropdown.mega-menu {
    position: static;
    transform: none;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 10px 0;
  }

  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feat-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-cat-card {
    height: 220px;
  }

  .about-content-side {
    padding: 30px 0 0 0;
  }

  .about-img-side {
    min-height: 300px;
  }

  .why-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-center-col {
    order: -1;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-title,
  .cta-subtitle {
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #home .carousel-item img {
    height: auto;
    /* aspect-ratio: 16/9; */
    object-fit: cover;
  }

  .banner-caption {
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .banner-caption .btn-yska-banner {
    padding: 8px 24px;
    font-size: 13px;
  }

  .feat-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feat-cat-card {
    height: 200px;
  }

  .shop-more-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-more-card {
    height: 240px;
  }

  .about-stats-row {
    flex-wrap: wrap;
  }

  .about-stat {
    flex: 0 0 50%;
  }

  .stats-strip-grid {
    flex-direction: column;
    gap: 16px;
  }

  .stat-strip-item {
    flex-direction: row;
    gap: 10px;
  }

  .smart-cta-main-title {
    text-align: center;
  }

  .smart-cta-desc {
    text-align: center;
  }

  .smart-cta-feat-grid {
    justify-content: center;
  }

  .pcard-grid,
  .pcard-grid-catalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-card-grid,
  .gallery-pg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .testi-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .sec-title,
  .about-main-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 575px) {
  .feat-cat-grid {
    grid-template-columns: 1fr;
  }

  .feat-cat-card {
    height: 240px;
  }

  .shop-more-grid {
    grid-template-columns: 1fr;
  }

  .shop-more-card {
    height: 260px;
  }

  .product-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-track {
    justify-content: center;
  }

  .product-item {
    flex: 0 0 85%;
    max-width: 320px;
    margin: 0 auto;
  }

  .product-nav-prev,
  .product-nav-next {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 10px 5px 0;
  }

  .product-nav-btns-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  .product-dots {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 15px;
    justify-content: center;
    width: 100%;
  }

  .pcard-grid,
  .pcard-grid-catalog {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card-grid,
  .gallery-pg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .fixed-btn {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
    font-size: 0;
    gap: 0;
  }

  .fixed-btn i {
    font-size: 18px;
  }

  .fixed-contact-btns {
    bottom: 16px;
    right: 14px;
  }

  .faq-stat-row {
    flex-wrap: wrap;
  }

  .contact-info-panel {
    border-radius: var(--radius-sm);
  }

  .contact-form-wrap {
    border-radius: var(--radius-sm);
  }

  .glb-prev {
    left: 8px;
  }

  .glb-next {
    right: 8px;
  }
}

/* ===== PRODUCT DETAIL PAGE (Premium Migration) ===== */
.pd-section {
  padding: 100px 0 80px;
  background: #ffffff;
  position: relative;
}

.pd-img-wrap {
  position: sticky;
  top: 120px;
  z-index: 10;
}

.pd-main-img-box {
  position: relative;
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.pd-main-img-box:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pd-main-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pd-main-img-box:hover .pd-main-img {
  transform: scale(1.05);
}

.pd-brand-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--yska-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.pd-info {
  padding-left: 30px;
}

.pd-brand-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yska-red);
  margin-bottom: 12px;
  display: block;
}

.pd-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.1;
}

.pd-tagline {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 90%;
}

.pd-features {
  margin-bottom: 40px;
}

.pd-features li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 15px;
  color: #444;
  padding: 12px 0;
  border-bottom: 1px solid #f2f2f2;
}

.pd-features li:last-child {
  border-bottom: none;
}

.pd-features li i {
  color: var(--yska-red);
  font-size: 16px;
  margin-top: 4px;
}

.pd-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.pd-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.pd-wa-btn:hover {
  background: #1eb956;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Technical Data Table */
.pd-table-section {
  padding: 100px 0;
  background: #f9fbff;
}

.pd-table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #eef2f6;
}

.pd-table-title {
  background: var(--text-dark);
  color: #fff;
  padding: 20px 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.pd-spec-table th {
  background: #f8fafd;
  padding: 18px 25px;
  font-weight: 700;
  color: #333;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 2px solid #edf2f7;
}

.pd-spec-table td {
  padding: 18px 25px;
  color: #555;
  border-bottom: 1px solid #f1f4f8;
  font-size: 14px;
}

.pd-spec-table tr:hover td {
  background: #fcfdfe;
}

.pd-watt-tag {
  background: rgba(200, 16, 46, 0.1);
  color: var(--yska-red);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
}

.pd-price {
  font-weight: 800;
  color: #111;
  font-size: 15px;
}

.pd-table-note {
  padding: 20px 30px;
  font-size: 13px;
  color: #777;
  background: #fdfdfe;
  border-top: 1px solid #f1f4f8;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Related Products */
.pd-bottom-section {
  padding: 100px 0;
  background: #ffffff;
}

.pd-related-grid-wide {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .pd-info {
    padding-left: 0;
    margin-top: 40px;
  }

  .pd-img-wrap {
    position: static;
  }
}

@media (max-width: 575px) {
  .pd-cta-row>* {
    width: 100%;
    justify-content: center;
  }

  .pd-table-wrap {
    border-radius: var(--radius-md);
  }

  .pd-spec-table th,
  .pd-spec-table td {
    padding: 12px 15px;
    font-size: 12px;
  }
}