.venus-contact-section {
  background-color: #fff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.venus-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 40px 0;
}

.venus-contact-item {
  flex: 1;
  min-width: 260px;
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid #ccc;
}

.venus-contact-item:last-child {
  border-right: none;
}

.venus-icon {
  font-size: 40px;
  color: #2088ca;
  margin-bottom: 10px;
}

.venus-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.venus-text {
  font-size: 16px;
  color: #222;
  margin: 4px 0;
}

/* Top & bottom borders only on mobile */
@media (max-width: 768px) {
  .venus-contact-section::before,
  .venus-contact-section::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #000;
    width: 100%;
    position: absolute;
    left: 0;
  }

  .venus-contact-section::before {
    top: 0;
  }

  .venus-contact-section::after {
    bottom: 0;
  }
}

.venus-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.venus-contact-item {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.venus-contact-item:hover {
  transform: translateY(-5px);
}

.venus-icon {
  font-size: 42px;
  color: #2088ca;
  margin-bottom: 12px;
}

.venus-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.venus-text {
  font-size: 15px;
  color: #333;
  margin: 4px 0;
  word-break: break-word;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .venus-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .venus-contact-item {
    width: 100%;
    max-width: 500px;
    border: none; /* ❌ remove inner borders */
    border-radius: 0;
    box-shadow: none;
  }

  .venus-icon {
    font-size: 36px;
  }

  .venus-title {
    font-size: 18px;
  }

  .venus-text {
    font-size: 14px;
  }
}

/* Venus Category Swiper - Exact Match Design */
.venus-category-swiper-section {
  background: #fff;
  padding: 60px 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
}

.venus-heading-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.venus-subtitle2 {
  font-size: 20px;
  color: #2088ca;
  font-weight: 600;
  margin: 0;
  width: 100%;
  text-align: left;
}

.venus-title2 {
  font-size: 32px;
  font-weight: 800;
  color: #0a0a1f;
  margin-top: 5px;
  text-align: left;
  width: 100%;
}

.venus-button {
  display: inline-block;
  background: linear-gradient(145deg, #2088ca, #176ba3);
  color: white;
  padding: 12px 28px;
  border-radius: 32px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 -3px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect like elevator press */
.venus-button:hover {
  transform: translateY(2px);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, #176ba3, #2088ca);
  color: white; /* Ensure text stays white */
}

/* Glowing edge effect on hover */
.venus-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(32, 136, 202, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venus-button:hover::after {
  opacity: 1;
}

/* === Venus Header Button Styling (Elevator Feel) === */

.venus-button2 {
  display: inline-block;
  background: linear-gradient(145deg, #2088ca, #176ba3);
  color: white;
  padding: 5px 18px;
  border-radius: 32px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 -3px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect like elevator press */
.venus-button2:hover {
  transform: translateY(2px);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, #176ba3, #2088ca);
  color: white; /* Ensure text stays white */
}

/* Glowing edge effect on hover */
.venus-button2::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(32, 136, 202, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venus-button2:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .venus-button2 {
    display: none !important;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}
/* === Venus Header Button Styling (Elevator Feel) === */

.venus-category-swiper {
  padding: 0 20px;
}

.venus-slide {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center; /* horizontal centering */
  text-align: center;
  padding: 30px 20px 20px;
  background: #f5f5f5;
  border-radius: 24px;
  min-height: 420px;
}

.venus-slide img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

.venus-caption {
  margin-top: 25px;
}

.venus-caption h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a1f;
  margin-bottom: 5px;
}

.venus-caption p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

/* Swiper custom pagination */
.swiper-pagination-bullet {
  background: transparent;
  border: 2px solid #2088ca;
  width: 12px;
  height: 12px;
  opacity: 1;
  margin-top: 30px;
}

.swiper-pagination-bullet-active {
  background: #2088ca;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .venus-heading-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .venus-title2,
  .venus-subtitle2 {
    text-align: left;
  }
  .venus-button {
    margin-top: 15px;
  }
}

.kitronic-slider-fixed {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  height: 700px;
  /* background removed: replaced by video */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", sans-serif;
  position: relative;
  padding: 0 100px;
  box-sizing: border-box;
  overflow: hidden; /* ensures video doesn't spill out on resize */
}

/* Make the video behave like a background image (cover) */
.kitronic-slider-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* fill and crop like background-size: cover */
  object-position: center;
  z-index: 0;            /* behind content */
  pointer-events: none;  /* clicks pass through */
}

/* Optional: overlay for readability (uncomment HTML too if needed) */
.kitronic-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.35));
  z-index: 1;
}

/* Keep your content above the video/overlay */
.kitronic-slider-fixed-inner,
.kitronic-slider-fixed-content {
  position: relative;
  z-index: 2;
}

/* Mobile: center the right third of the video */
@media (max-width: 768px) {
  .kitronic-slider-video {
    /* Center horizontally on the midpoint of the right third */
    object-position: 83.333% 50%;
  }

  /* (Optional) if you also use a background image fallback somewhere */
  .kitronic-slider-fixed {
    background-position: 83.333% 50%;
  }
}

@media (max-width: 768px) {
  /* Make the inner wrapper fill the slider and use flex */
  .kitronic-slider-fixed-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* push content to bottom */
    width: 100%;
    height: 100%;
    z-index: 2; /* above the video */
  }

  /* The content block sits at the bottom with safe padding */
  .kitronic-slider-fixed-content {
    margin-top: auto;       /* in case other styles interfere */
    padding-bottom: 14px;   /* adjust to taste */
    text-align: left;       /* or center if you prefer */
  }

  /* Optional: tighter horizontal padding on small screens */
  .kitronic-slider-fixed {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Default (tablet/desktop) */
.xcolor {
  color: #2088ca;
}

/* Mobile */
@media (max-width: 768px) {
  .xcolor {
    color: #fff;
  }
}

/* Default (tablet/desktop) */
.brand-venus { color: #fff; }        /* was inline: #fff */
.brand-asansor { color: #2088ca; }   /* was inline: #2088ca */

/* Mobile: make both words white */
@media (max-width: 768px) {
  .brand-venus,
  .brand-asansor {
    color: #fff;
  }
}

.brand-venus,
.brand-asansor {
  letter-spacing: 1px; /* adjust value to taste */
}



.kitronic-slider-fixed-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1150px;
}

.kitronic-slider-fixed-content {
  max-width: 700px;
}

.kitronic-slider-fixed-badge {
  background: #000;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.kitronic-slider-fixed-content h1 {
  font-size: 58px;
  margin: 0 0 20px;
  line-height: 1.2;
  font-weight: 700;
}

.kitronic-slider-fixed-content p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 500;
}

.kitronic-slider-fixed-image img {
  max-height: 500px;
  display: block;
}

.venus-button3 {
  display: inline-block;
  background: linear-gradient(145deg, #2088ca, #176ba3);
  color: white;
  padding: 9px 20px;
  border-radius: 32px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 -3px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect like elevator press */
.venus-button3:hover {
  transform: translateY(2px);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, #176ba3, #2088ca);
  color: white; /* Ensure text stays white */
}

/* Glowing edge effect on hover */
.venus-button3::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(32, 136, 202, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venus-button3:hover::after {
  opacity: 1;
}

/* Responsive Mobile Styling */
@media (max-width: 768px) {
  .kitronic-slider-fixed {
    height: 700px;
    padding: 10px 20px;
    background-position: right center; /* ✅ show right half */
    text-align: center;
    background: url("../images/slider/1.jpg") 80% center / cover no-repeat;
  }

  .kitronic-slider-fixed-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .kitronic-slider-fixed-content {
    max-width: 100%;
  }

  .kitronic-slider-fixed-content h1.slider-title {
    font-size: 27px; /* ✅ smaller title */
  }

  .kitronic-slider-fixed-content h5 {
    font-size: 14px;
  }

  .kitronic-slider-fixed-content p {
    font-size: 12px;
    line-height: 1.5;
  }

  .venus-button3 {
    display: none;
  }

  .typed-cursor {
    display: none;
  }
}

/* Hide on screens smaller than 768px (mobile) */
@media (min-width: 767px) {
  .desktop-only {
    display: none !important;
  }
}

/* Optional: show it normally on larger screens */
@media (max-width: 768px) {
  .desktop-only {
    display: list-item;
  }
}


:root{
  --gc-max: 1200px;
  --gc-text: #0f172a;
  --gc-muted:#6b7280;
  --gc-border:#e5e7eb;
  --gc-panel:#f6f8fc;
  --gc-dark:#111;
}

.gc-section{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--gc-text);
  background:#fff;
  padding: 40px 20px 64px;
}

.gc-wrap{
  max-width: var(--gc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr 480px;   /* sağ bilgi alanı sabit, orta alan esnek */
  gap: 32px;
  align-items: start;
}

/* Thumbnails (sol) */
.gc-thumbs{
  display: grid;
  gap: 28px;
  justify-items: center;
  position: sticky;
  top: 32px;
  margin-top: 24px; /* içerikleri biraz aşağı indir */
}
.gc-thumb{
  width: 120px; height: 120px; border-radius: 50%;
  padding: 10px; background:#eef2f7; border:1px solid #e9edf3;
  display: grid; place-items: center; cursor: pointer; transition: transform .2s ease;
}
.gc-thumb:hover{ transform: translateY(-2px); }
.gc-thumb.is-active{ box-shadow: 0 0 0 2px var(--gc-dark) inset; }
.gc-thumb img{ width: 86px; height: 86px; object-fit: cover; border-radius: 50%; }

/* Main image (orta) */
.gc-hero{
  margin: 0;
  border:1px solid var(--gc-border);
  background: var(--gc-panel);
  display: grid; place-items: center;
  min-height: 520px;
}
.gc-hero img{
  width: 80%;           /* %20 daha dar */
  max-width: 640px;     /* görsel üst sınır */
  height: auto; display: block;
}

/* Right info */
.gc-info{ padding-top: 8px; margin-top: 24px; } /* biraz aşağı indirildi */
.gc-title{ margin: 0 0 6px; font-size: clamp(26px, 3vw, 40px); font-weight: 800; }
.gc-meta{ margin-bottom: 14px; }
.gc-link{ color:#475569; text-decoration:none; font-size:14px; }
.gc-link:hover{ text-decoration: underline; }

.gc-desc{
  color: var(--gc-muted);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 580px;
}

/* CTA */
.gc-cta{ display:flex; gap:12px; align-items:center; }
.gc-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:52px; padding:0 24px;
  background: var(--gc-dark); color:#fff; border-radius:8px; border:0;
  font-weight: 700; letter-spacing:.02em; text-decoration:none; cursor:pointer;
}
.gc-btn:active{ transform: translateY(1px); }

/* Responsive */
@media (max-width: 1100px){
  .gc-wrap{ grid-template-columns: 100px 1fr; }
  .gc-info{ grid-column: 1 / -1; }
}
@media (max-width: 768px){
  .gc-wrap{ grid-template-columns: 1fr; gap: 20px; }
  .gc-thumbs{
    order: 3; grid-auto-flow: column; grid-auto-columns: 110px; overflow-x:auto;
    padding-bottom: 6px;
  }
  .gc-hero{ min-height: 420px; }
  .gc-hero img{ width: 86%; max-width: 520px; }
  .gc-info{ margin-top: 8px; }
}
@media (max-width: 420px){
  .gc-thumb{ width: 100px; height: 100px; }
  .gc-thumb img{ width: 76px; height: 76px; }
  .gc-btn{ width: 100%; }
}





/* ===== Section ===== */
.lzr-wrap{ background:var(--lzr-bg); padding:clamp(24px,3vw,48px) 0; }
.lzr-container{ width:min(1280px,92%); margin-inline:auto; }

/* ===== Tabs Bar ===== */
.lzr-tabs{
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
  margin-bottom: clamp(16px,3vw,26px);
}
.lzr-tab{
  appearance:none; border:1px solid rgba(2,6,23,.08);
  background:#fff; color:#0f172a; font-weight:700;
  padding:10px 14px; border-radius:999px; cursor:pointer;
  transition: all .18s ease; box-shadow: var(--lzr-shadow);
  font-size: clamp(13px,2.2vw,14px);
}
.lzr-tab:hover{ transform: translateY(-1px); }
.lzr-tab.is-active{
  background:linear-gradient(90deg, var(--lzr-accent), var(--lzr-brand));
  color:#2088ca; border-color:transparent;
  box-shadow:0 10px 22px rgba(47,116,255,.28);
}

/* legacy dropdown on the right (visual only) */
.lzr-select{
  margin-left:auto; display:inline-flex; align-items:center; gap:10px;
  background:#fff; padding:12px 18px; border-radius:14px; box-shadow:var(--lzr-shadow);
  border:1px solid rgba(2,6,23,.06); cursor:pointer; user-select:none;
}
.lzr-select__label{ font-weight:600; font-size:14px; }
.lzr-select__chev{ width:20px; height:20px; color:#6b7280; }

/* ===== Grid ===== */
.lzr-grid{
  --gap: clamp(14px, 2.5vw, 22px);
  display:grid; gap:var(--gap);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width:540px){ .lzr-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (min-width:900px){ .lzr-grid{ grid-template-columns: repeat(3, 1fr);} }
@media (min-width:1200px){ .lzr-grid{ grid-template-columns: repeat(4, 1fr);} }

/* ===== Card ===== */
.tkz-card{
  background:var(--lzr-card);
  border-radius:var(--lzr-radius);
  box-shadow:var(--lzr-shadow);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .22s ease, box-shadow .22s ease;
  border:1px solid rgba(2,6,23,.06);
}
.tkz-card:hover{ transform:translateY(-4px); box-shadow:0 14px 32px rgba(15,23,42,.12); }

.tkz-card__media{
  position:relative;
  aspect-ratio: 16 / 13;
  background:#ffffff;            /* pure white background behind image */
  display:grid; place-items:center;
  border-bottom:1px solid rgba(0,0,0,0.05); /* subtle separation */
}
.tkz-img{
  width:86%; height:auto; object-fit:contain;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,.08));
  transition: transform .25s ease;
}
.tkz-card:hover .tkz-img{ transform: scale(1.04); }

.tkz-bar{
  position:absolute; left:0; right:0; bottom:0; height:14px;
  background: linear-gradient(90deg, var(--lzr-accent), #2f74ff 70%, #2f74ff);
}

.tkz-card__body{ padding:18px 16px 20px; }
.tkz-name{ margin:0 0 6px; font-weight:800; font-size:clamp(18px,2.6vw,20px); color:var(--lzr-text); }
.tkz-sub{ margin:0; color:var(--lzr-muted); font-size:15px; font-weight:600; }
.tkz-linkish{ margin-left:4px; color:#0d62c7; }




.aboutus-special-wrapper {
  background: url('assets/images/background/2.webp') no-repeat center/cover;
  border-radius: 20px;
  padding: 70px 40px;
  margin: 40px auto;
}

.aboutus-special-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.aboutus-special-left {
  flex: 1 1 50%;
}

.aboutus-special-subtitle {
  color: #2088ca;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 14px;
}

.aboutus-special-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f0f0f;
  margin-bottom: 20px;
  line-height: 1.3;
}

.aboutus-special-desc {
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.aboutus-special-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.aboutus-special-list li {
  margin-bottom: 14px;
  font-weight: 500;
  color: #111;
  padding-left: 28px;
  position: relative;
}

.aboutus-special-list li::before {
  content: "✔";
  color: #2088ca;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 15px;
}

.aboutus-special-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2088ca;
  color: #fff;
  padding: 16px 34px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.aboutus-special-btn:hover {
  background: #5333d8;
}

.aboutus-special-btn-icon {
  font-size: 12px;
}

.aboutus-special-right {
  flex: 1 1 45%;
  position: relative;
}

.aboutus-special-right img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.aboutus-special-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #2088ca;
  color: #fff;
  padding: 18px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.aboutus-special-badge-number {
  font-size: 32px;
  font-weight: 800;
}

.aboutus-special-badge-text {
  font-size: 15px;
  line-height: 1.4;
  max-width: 160px;
}







.feature-cards-section {
  padding: 40px 0;
}

.feature-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Base card */
.feature-card {
  width: 280px;
  height: 260px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Blue cards */
.feature-card-blue {
  background: linear-gradient(135deg, #18c8f6, #3178ff);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-image {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

/* Bottom notch cut-out */
.feature-card-blue::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70px;
  height: 20px;
  background: #fff;
  border-radius: 0 0 50px 50px;
  transform: translateX(-50%);
}

.feature-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

/* Dark card */
.feature-card-dark {
  background: #000;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding:








.contact-section-wrapper {
  padding: 60px 0;
  font-family: "Segoe UI", sans-serif;
  color: #111;
}
    }

.contact-section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Left */
.contact-section-left {
  flex: 1 1 50%;
}

.contact-section-subtitle {
  font-style: italic;
  font-weight: 600;
  color: #2088ca;
  margin-bottom: 10px;
}

.contact-section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0c1b29;
}

.contact-section-desc {
  color: #7d8a96;
  line-height: 1.6;
  border-left: 3px solid #2088ca;
  padding-left: 12px;
  margin-bottom: 25px;
}

.contact-section-support {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-section-phone {
  font-size: 28px;
  font-weight: 700;
  color: #2088ca;
  margin-bottom: 30px;
}

/* Boxes */
.contact-section-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-section-box {
  flex: 1 1 45%;
  padding: 20px;
  border-radius: 8px;
}

.contact-section-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-section-box1 {
  background: #f5f5f5;
}

.contact-section-box2 {
  border: 1px solid #000;
}

/* Right */
.contact-section-right {
  flex: 1 1 45%;
  text-align: center;
}

.contact-section-right img {
  max-width: 100%;
  height: auto;
}



/* Map wrapper allows absolute positioning */
.contact-section-mapwrap {
  position: relative;
  display: inline-block;       /* shrink to image size */
  max-width: 100%;
}

/* Map image */
.contact-section-mapimg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Flashing (pulsing) spot centered on the map */
.contact-section-ping {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(140%, -190%); /* center on midpoint */
  width: 14px;
  height: 14px;
  background: #2088ca;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(32, 136, 202, 0.5); /* outer ring */
  z-index: 2;
}

/* Pulse ring */
.contact-section-ping::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(32, 136, 202, 0.35); /* pulsing color */
  animation: contact-section-pulse 1.6s ease-out infinite;
}

/* Keyframes for the flashing/pulse effect */
@keyframes contact-section-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(2.6);
    opacity: 0;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}


.product-section-wrapper {
  padding: 20px 0;
  font-family: "Segoe UI", sans-serif;
}

.product-section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left */
.product-section-left {
  flex: 1 1 50%;
}

.product-section-subtitle {
  font-style: italic;
  font-weight: 600;
  color: #7d8a96;
  margin-bottom: 12px;
}

.product-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #0c1b29;
  line-height: 1.3;
  margin-bottom: 20px;
      letter-spacing: 1.1px; /* adjust as needed */

}

.product-section-desc {
  color: #7d8a96;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button */
.product-section-btn {
  display: inline-block;
  background: #e02929;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.product-section-btn:hover {
  background: #c61e1e;
}

/* Right */
.product-section-right {
  flex: 1 1 45%;
  text-align: center;
}

.product-section-right img {
  max-width: 100%;
  height: auto;
}


.product-section-divider{
  height:1px;               /* thin line */
  width:100%;
  max-width:1200px;         /* align with content width */
  margin:24px auto 0;       /* space above the line */
  background:#e5e7eb;       /* light gray (#e5e7eb) */
  border-radius:1px;
}

.product-section-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-section-right img {
  max-height: 420px;  /* set your desired limit */
  width: auto;        /* auto width to preserve ratio */
  height: auto;       /* ensure no distortion */
  max-width: 100%;    /* prevent overflow in narrow layouts */
}

@media (max-width: 768px) {
  .product-section-right img {
    max-height: 360px;
  }
}

/* Mobile: center content and add side space */
@media (max-width: 768px) {
  .product-section-wrapper {
    padding-left: 20px;   /* side space */
    padding-right: 20px;  /* side space */
  }

  .product-section-container {
    flex-direction: column;     /* stack columns */
    align-items: center;         /* center horizontally */
    text-align: center;          /* center text */
    gap: 24px;                   /* nice spacing between blocks */
  }

  .product-section-left,
  .product-section-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .product-section-title,
  .product-section-subtitle,
  .product-section-desc {
    text-align: center;
  }

  .product-section-btn {
    display: inline-block;
    margin: 10px auto 0;         /* center the button */
  }

  .product-section-right img {
    display: block;
    margin: 0 auto;              /* center image */
    max-height: 360px;           /* optional: smaller on mobile */
    width: auto;
    max-width: 100%;
    height: auto;
  }
}


/* ============================================
   VENUS LIFT SYSTEMS - COMBINED STYLES
   Homelift (vhl-) & Stairlift (vsl-)
   Theme: linear-gradient(145deg, #2088ca, #176ba3)
   ============================================ */

/* ============================================
   SHARED VARIABLES
   ============================================ */
:root {
  /* Primary Colors */
  --vls-primary: #2088ca;
  --vls-primary-dark: #176ba3;
  --vls-primary-light: #4ba3dd;
  --vls-gradient: linear-gradient(145deg, #2088ca, #176ba3);
  
  /* Secondary Colors */
  --vls-secondary: #1e293b;
  --vls-accent: #f59e0b;
  
  /* Neutral Colors */
  --vls-light: #f8fafc;
  --vls-dark: #0f172a;
  --vls-gray: #64748b;
  --vls-gray-light: #94a3b8;
  --vls-border: #e2e8f0;
  --vls-white: #fff;
  
  /* Shadows */
  --vls-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --vls-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --vls-shadow-primary: 0 8px 25px rgba(32, 136, 202, 0.3);
  
  /* Border Radius */
  --vls-radius: 12px;
  --vls-radius-sm: 6px;
  --vls-radius-lg: 20px;
  --vls-radius-full: 50px;
  
  /* Transitions */
  --vls-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   SHARED BASE STYLES
   ============================================ */
.vhl-page-wrapper,
.vsl-page-wrapper {
  overflow-x: hidden;
  background: var(--vls-white);
  font-size: 14px;
  line-height: 1.6;
}

.vhl-container,
.vsl-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   SHARED SECTION HEADERS
   ============================================ */
.vhl-section-header,
.vsl-section-header {
  margin-bottom: 40px;
}

.vhl-section-header.vhl-center,
.vsl-section-header.vsl-center {
  text-align: center;
}

.vhl-section-tag,
.vsl-section-tag {
  display: inline-block;
  background: var(--vls-gradient);
  color: var(--vls-white);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--vls-radius-full);
  margin-bottom: 12px;
}

.vhl-section-title,
.vsl-section-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--vls-dark);
  line-height: 1.25;
  margin: 0 0 12px;
}

.vhl-section-subtitle,
.vsl-section-subtitle {
  font-size: 14px;
  color: var(--vls-gray);
  max-width: 550px;
  margin: 0 auto;
}

/* ============================================
   SHARED HERO STYLES
   ============================================ */
.vhl-hero,
.vsl-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f7fc 0%, #e3f0f9 50%, #f0f7fc 100%);
  overflow: hidden;
  padding: 100px 20px 60px;
}

.vhl-hero-bg,
.vsl-hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(32, 136, 202, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(23, 107, 163, 0.08) 0%, transparent 50%);
}

.vhl-hero-content,
.vsl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  padding-right: 30px;
}

.vhl-hero-badge,
.vsl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(32, 136, 202, 0.1);
  color: var(--vls-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--vls-radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(32, 136, 202, 0.2);
}

.vhl-hero-badge i,
.vsl-hero-badge i {
  font-size: 12px;
}

.vhl-hero-title,
.vsl-hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  color: var(--vls-dark);
  line-height: 1.1;
  margin: 0 0 16px;
}

.vhl-hero-subtitle,
.vsl-hero-subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--vls-gray);
  line-height: 1.7;
  margin: 0 0 24px;
}

.vhl-hero-features,
.vsl-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.vhl-hero-feature,
.vsl-hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vls-dark);
}

.vhl-hero-feature i,
.vsl-hero-feature i {
  color: var(--vls-primary);
  font-size: 14px;
}

.vhl-hero-buttons,
.vsl-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vhl-hero-btn,
.vsl-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--vls-radius-full);
  text-decoration: none;
  transition: var(--vls-transition);
}

.vhl-hero-btn-primary,
.vsl-hero-btn-primary {
  background: var(--vls-gradient);
  color: var(--vls-white);
  box-shadow: var(--vls-shadow-primary);
}

.vhl-hero-btn-primary:hover,
.vsl-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(32, 136, 202, 0.4);
  color: var(--vls-white);
}

.vhl-hero-btn-secondary,
.vsl-hero-btn-secondary {
  background: var(--vls-white);
  color: var(--vls-primary);
  border: 2px solid var(--vls-primary);
}

.vhl-hero-btn-secondary:hover,
.vsl-hero-btn-secondary:hover {
  background: var(--vls-primary);
  color: var(--vls-white);
}

.vhl-hero-btn i,
.vsl-hero-btn i {
  font-size: 12px;
}

.vhl-hero-btn-primary i {
  animation: vls-bounce 2s infinite;
}

@keyframes vls-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(4px); }
  60% { transform: translateY(2px); }
}

/* ============================================
   SHARED TRUST BADGES
   ============================================ */
.vhl-trust,
.vsl-trust {
  background: var(--vls-gradient);
  padding: 20px 0;
}

.vhl-trust-grid,
.vsl-trust-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.vhl-trust-item,
.vsl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vls-white);
  font-size: 12px;
  font-weight: 500;
}

.vhl-trust-item i,
.vsl-trust-item i {
  font-size: 16px;
  opacity: 0.9;
}

/* ============================================
   SHARED INTRO SECTION
   ============================================ */
.vhl-intro,
.vsl-intro {
  padding: 70px 0;
  background: var(--vls-white);
}

.vhl-intro-grid,
.vsl-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vhl-intro-content p,
.vsl-intro-content p {
  font-size: 13px;
  color: var(--vls-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.vhl-intro-content p strong,
.vsl-intro-content p strong {
  color: var(--vls-dark);
}

.vhl-intro-list,
.vsl-intro-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.vhl-intro-list li,
.vsl-intro-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--vls-dark);
  margin-bottom: 10px;
}

.vhl-intro-list li i,
.vsl-intro-list li i {
  color: var(--vls-primary);
  font-size: 14px;
}

.vhl-intro-image {
  border-radius: var(--vls-radius);
  overflow: hidden;
  box-shadow: var(--vls-shadow-lg);
}

.vhl-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stairlift Intro Visual Cards */
.vsl-intro-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vsl-intro-card {
  background: var(--vls-light);
  border-radius: var(--vls-radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--vls-transition);
  border: 1px solid var(--vls-border);
}

.vsl-intro-card:hover {
  border-color: var(--vls-primary);
  transform: translateY(-5px);
  box-shadow: var(--vls-shadow);
}

.vsl-intro-icon {
  width: 50px;
  height: 50px;
  background: var(--vls-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.vsl-intro-icon i {
  font-size: 20px;
  color: var(--vls-white);
}

.vsl-intro-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--vls-dark);
  margin: 0 0 6px;
}

.vsl-intro-card p {
  font-size: 12px;
  color: var(--vls-gray);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   SHARED GALLERY SECTION
   ============================================ */
.vhl-gallery,
.vsl-gallery {
  padding: 70px 0;
  background: var(--vls-light);
}

.vsl-gallery {
  background: var(--vls-white);
}

.vhl-gallery-grid,
.vsl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 16px;
}

.vhl-gallery-item,
.vsl-gallery-item {
  position: relative;
  border-radius: var(--vls-radius);
  overflow: hidden;
  cursor: pointer;
}

.vhl-gallery-item.vhl-gallery-large,
.vsl-gallery-item.vsl-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.vhl-gallery-item img,
.vsl-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vls-transition);
}

.vhl-gallery-overlay,
.vsl-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--vls-transition);
}

.vhl-gallery-overlay span,
.vsl-gallery-overlay span {
  color: var(--vls-white);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(15px);
  transition: var(--vls-transition);
}

.vhl-gallery-item:hover img,
.vsl-gallery-item:hover img {
  transform: scale(1.08);
}

.vhl-gallery-item:hover .vhl-gallery-overlay,
.vsl-gallery-item:hover .vsl-gallery-overlay {
  opacity: 1;
}

.vhl-gallery-item:hover .vhl-gallery-overlay span,
.vsl-gallery-item:hover .vsl-gallery-overlay span {
  transform: translateY(0);
}

/* ============================================
   SHARED SPECIFICATIONS SECTION
   ============================================ */
.vhl-specs,
.vsl-specs {
  padding: 70px 0;
  background: var(--vls-white);
}

.vsl-specs {
  background: var(--vls-light);
}

.vhl-specs-wrapper,
.vsl-specs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.vsl-specs-wrapper {
  margin-top: 20px;
}

.vhl-specs-image {
  position: relative;
}

.vhl-specs-image-frame {
  background: linear-gradient(135deg, var(--vls-light) 0%, #e8f4fc 100%);
  border-radius: var(--vls-radius-lg);
  padding: 30px;
  box-shadow: var(--vls-shadow-lg);
}

.vhl-specs-image-frame img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.vsl-specs-image {
  background: linear-gradient(180deg, var(--vls-white) 0%, #e8f4fc 100%);
  border-radius: var(--vls-radius-lg);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--vls-shadow);
}

.vsl-specs-image img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.vhl-specs-floating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--vls-white);
  padding: 10px 18px;
  border-radius: var(--vls-radius-full);
  box-shadow: var(--vls-shadow);
  font-size: 12px;
  font-weight: 600;
  color: var(--vls-dark);
}

.vhl-specs-floating i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vls-gradient);
  color: var(--vls-white);
  border-radius: 50%;
  font-size: 12px;
}

.vhl-float-1 {
  top: 10%;
  right: -15px;
  animation: vls-float 3s ease-in-out infinite;
}

.vhl-float-2 {
  bottom: 15%;
  left: -15px;
  animation: vls-float 3s ease-in-out infinite 1.5s;
}

@keyframes vls-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vhl-specs-content,
.vsl-specs-content {
  padding: 15px 0;
}

.vhl-specs-desc {
  font-size: 13px;
  color: var(--vls-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.vhl-specs-grid,
.vsl-specs-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vsl-specs-grid {
  gap: 14px;
}

.vhl-spec-card,
.vsl-spec-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--vls-light);
  padding: 16px 22px;
  border-radius: var(--vls-radius);
  transition: var(--vls-transition);
  border: 1px solid transparent;
}

.vsl-spec-card {
  background: var(--vls-white);
  gap: 18px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.vhl-spec-card:hover,
.vsl-spec-card:hover {
  border-color: var(--vls-primary);
  transform: translateX(8px);
  box-shadow: var(--vls-shadow);
  background: var(--vls-white);
}

.vhl-spec-icon,
.vsl-spec-icon {
  width: 46px;
  height: 46px;
  background: var(--vls-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vsl-spec-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.vhl-spec-icon i,
.vsl-spec-icon i {
  font-size: 18px;
  color: var(--vls-white);
}

.vsl-spec-icon i {
  font-size: 20px;
}

.vhl-spec-info h4,
.vsl-spec-info h4 {
  font-size: 11px;
  font-weight: 500;
  color: var(--vls-gray);
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vhl-spec-value,
.vsl-spec-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--vls-dark);
}

.vsl-spec-value {
  font-size: 18px;
}

/* ============================================
   SHARED FEATURES SECTION
   ============================================ */
.vhl-features,
.vsl-features {
  padding: 70px 0;
  background: var(--vls-white);
}

.vsl-features {
  background: var(--vls-light);
}

.vhl-features-grid,
.vsl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vhl-feature-card,
.vsl-feature-card {
  background: var(--vls-light);
  border-radius: var(--vls-radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--vls-transition);
  border: 1px solid var(--vls-border);
}

.vsl-feature-card {
  background: var(--vls-white);
}

.vhl-feature-card:hover,
.vsl-feature-card:hover {
  border-color: var(--vls-primary);
  transform: translateY(-6px);
  box-shadow: var(--vls-shadow);
  background: var(--vls-white);
}

.vhl-feature-icon,
.vsl-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(32, 136, 202, 0.1) 0%, rgba(32, 136, 202, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--vls-transition);
}

.vhl-feature-card:hover .vhl-feature-icon,
.vsl-feature-card:hover .vsl-feature-icon {
  background: var(--vls-gradient);
}

.vhl-feature-icon i,
.vsl-feature-icon i {
  font-size: 22px;
  color: var(--vls-primary);
  transition: var(--vls-transition);
}

.vhl-feature-card:hover .vhl-feature-icon i,
.vsl-feature-card:hover .vsl-feature-icon i {
  color: var(--vls-white);
}

.vhl-feature-card h4,
.vsl-feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--vls-dark);
  margin: 0 0 8px;
}

.vhl-feature-card p,
.vsl-feature-card p {
  font-size: 12px;
  color: var(--vls-gray);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SHARED FAQ SECTION
   ============================================ */
.vhl-faq,
.vsl-faq {
  padding: 70px 0;
  background: var(--vls-light);
}

.vhl-faq-grid,
.vsl-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.vhl-faq-item,
.vsl-faq-item {
  background: var(--vls-white);
  border-radius: var(--vls-radius);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: var(--vls-transition);
}

.vsl-faq-item:hover {
  box-shadow: var(--vls-shadow);
}

.vhl-faq-item h3,
.vsl-faq-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--vls-dark);
  margin: 0 0 10px;
  line-height: 1.4;
}

.vhl-faq-item h3 i,
.vsl-faq-item h3 i {
  color: var(--vls-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.vhl-faq-item p,
.vsl-faq-item p {
  font-size: 12px;
  color: var(--vls-gray);
  line-height: 1.7;
  margin: 0;
  padding-left: 26px;
}

/* ============================================
   SHARED CTA SECTION
   ============================================ */
.vhl-cta,
.vsl-cta {
  position: relative;
  padding: 70px 0;
  background: var(--vls-gradient);
  overflow: hidden;
}

.vhl-cta-bg,
.vsl-cta-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.vhl-cta-content,
.vsl-cta-content {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.vhl-cta-content h2,
.vsl-cta-content h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--vls-white);
  margin: 0 0 12px;
}

.vhl-cta-content p,
.vsl-cta-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 30px;
}

.vhl-cta-buttons,
.vsl-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.vhl-btn,
.vsl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--vls-radius-full);
  text-decoration: none;
  transition: var(--vls-transition);
}

.vhl-btn-primary,
.vsl-btn-primary {
  background: var(--vls-white);
  color: var(--vls-primary);
}

.vhl-btn-primary:hover,
.vsl-btn-primary:hover {
  background: var(--vls-dark);
  color: var(--vls-white);
  transform: translateY(-2px);
}

.vhl-btn-secondary,
.vsl-btn-secondary {
  background: transparent;
  color: var(--vls-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.vhl-btn-secondary:hover,
.vsl-btn-secondary:hover {
  background: var(--vls-white);
  color: var(--vls-primary);
  border-color: var(--vls-white);
  transform: translateY(-2px);
}

.vhl-cta-contact,
.vsl-cta-contact {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.vhl-cta-contact a,
.vsl-cta-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--vls-transition);
}

.vhl-cta-contact a:hover,
.vsl-cta-contact a:hover {
  color: var(--vls-white);
}

.vhl-cta-contact a i,
.vsl-cta-contact a i {
  font-size: 14px;
}

/* ============================================
   HOMELIFT SPECIFIC STYLES
   ============================================ */

/* Hero Lift Image */
.vhl-hero-lift {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 42%;
  max-width: 480px;
  z-index: 1;
}

.vhl-hero-lift img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.18));
}

/* Customization Section */
.vhl-customize {
  padding: 70px 0;
  background: var(--vls-light);
}

.vhl-customize-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.vhl-customize-preview {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.vhl-preview-frame {
  position: relative;
  background: linear-gradient(180deg, var(--vls-white) 0%, #e8f4fc 100%);
  border-radius: var(--vls-radius-lg);
  padding: 30px;
  display: flex;
  justify-content: center;
}

.vhl-preview-img {
  max-height: 550px;
  width: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

/* Hotspots */
.vhl-hotspot {
  position: absolute;
  cursor: pointer;
  z-index: 10;
}

.vhl-hotspot-1 { top: 18%; left: 55%; }
.vhl-hotspot-2 { top: 38%; left: 60%; }
.vhl-hotspot-3 { top: 55%; left: 35%; }
.vhl-hotspot-4 { top: 75%; left: 55%; }

.vhl-hotspot-ping {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgba(32, 136, 202, 0.3);
  border-radius: 50%;
  animation: vls-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes vls-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.vhl-hotspot-dot {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--vls-gradient);
  color: var(--vls-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(32, 136, 202, 0.35);
  transition: var(--vls-transition);
}

.vhl-hotspot:hover .vhl-hotspot-dot {
  transform: scale(1.12);
}

.vhl-hotspot-label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--vls-dark);
  color: var(--vls-white);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--vls-transition);
}

.vhl-hotspot:hover .vhl-hotspot-label {
  opacity: 1;
  left: 50px;
}

/* Options Panel */
.vhl-customize-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vhl-option-group {
  background: var(--vls-white);
  border-radius: var(--vls-radius);
  padding: 28px;
  transition: var(--vls-transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.vhl-option-group.vhl-highlight {
  box-shadow: 0 0 0 2px var(--vls-primary);
}

.vhl-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.vhl-option-number {
  width: 30px;
  height: 30px;
  background: var(--vls-gradient);
  color: var(--vls-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.vhl-option-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--vls-dark);
  margin: 0;
}

.vhl-option-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Door Options */
.vhl-door-options {
  gap: 20px;
}

.vhl-door-options .vhl-option-item {
  background: var(--vls-light);
  border: 2px solid var(--vls-border);
  border-radius: var(--vls-radius);
  padding: 20px 16px 16px;
  cursor: pointer;
  transition: var(--vls-transition);
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 160px;
}

.vhl-door-options .vhl-option-item:hover {
  border-color: var(--vls-primary);
}

.vhl-door-options .vhl-option-item.vhl-option-active {
  border-color: var(--vls-primary);
  background: rgba(32, 136, 202, 0.05);
  box-shadow: 0 4px 20px rgba(32, 136, 202, 0.15);
}

.vhl-door-options .vhl-option-item img {
  width: 80px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: var(--vls-transition);
}

.vhl-door-options .vhl-option-item:hover img {
  transform: scale(1.05);
}

.vhl-door-options .vhl-option-item span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--vls-dark);
}

/* Handrail Options */
.vhl-handrail-options {
  gap: 18px;
}

.vhl-handrail-options .vhl-option-item.vhl-option-round {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  min-width: 90px;
  flex: none;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vls-light);
  border: 3px solid var(--vls-border);
  transition: var(--vls-transition);
}

.vhl-handrail-options .vhl-option-item.vhl-option-round:hover {
  border-color: var(--vls-primary);
  transform: scale(1.08);
}

.vhl-handrail-options .vhl-option-item.vhl-option-round.vhl-option-active {
  border-color: var(--vls-primary);
  background: rgba(32, 136, 202, 0.05);
  box-shadow: 0 4px 20px rgba(32, 136, 202, 0.2);
}

.vhl-handrail-options .vhl-option-item.vhl-option-round img {
  width: 65px;
  height: 65px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  transition: var(--vls-transition);
}

/* Glass Options */
.vhl-glass-options {
  gap: 20px;
}

.vhl-glass-options .vhl-option-item {
  background: var(--vls-light);
  border: 2px solid var(--vls-border);
  border-radius: var(--vls-radius);
  padding: 20px 16px 16px;
  cursor: pointer;
  transition: var(--vls-transition);
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 160px;
}

.vhl-glass-options .vhl-option-item:hover {
  border-color: var(--vls-primary);
}

.vhl-glass-options .vhl-option-item.vhl-option-active {
  border-color: var(--vls-primary);
  background: rgba(32, 136, 202, 0.05);
  box-shadow: 0 4px 20px rgba(32, 136, 202, 0.15);
}

.vhl-glass-options .vhl-option-item img {
  width: 80px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: var(--vls-transition);
}

.vhl-glass-options .vhl-option-item:hover img {
  transform: scale(1.05);
}

.vhl-glass-options .vhl-option-item span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--vls-dark);
}

/* Color Grid */
.vhl-color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.vhl-color-item {
  aspect-ratio: 1;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  border: 3px solid transparent;
  transition: var(--vls-transition);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}

.vhl-color-item:hover {
  transform: scale(1.08);
  z-index: 2;
}

.vhl-color-item.vhl-option-active {
  border-color: var(--vls-primary);
  box-shadow: 0 3px 12px rgba(32, 136, 202, 0.25);
}

.vhl-color-check {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(32, 136, 202, 0.2);
  border-radius: 8px;
}

.vhl-color-check i {
  color: var(--vls-primary);
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.vhl-color-item.vhl-option-active .vhl-color-check {
  display: flex;
}

.vhl-color-selected {
  font-size: 12px;
  color: var(--vls-gray);
}

.vhl-color-selected strong {
  color: var(--vls-dark);
}

/* Variants */
.vhl-variants {
  text-align: center;
}

.vhl-variants-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vls-dark);
  margin-bottom: 30px;
}

.vhl-variants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vhl-variant-item {
  background: var(--vls-white);
  border-radius: var(--vls-radius);
  padding: 24px 16px 16px;
  transition: var(--vls-transition);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.vhl-variant-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--vls-shadow);
}

.vhl-variant-item img {
  height: 160px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

.vhl-variant-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--vls-dark);
}

/* ============================================
   STAIRLIFT SPECIFIC STYLES
   ============================================ */

/* Hero Grid Layout */
.vsl-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  padding: 100px 5% 60px;
}

.vsl-hero-content {
  padding-right: 0;
}

.vsl-hero-title {
  font-size: clamp(32px, 5vw, 52px);
}

.vsl-hero-subtitle {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.8;
}

.vsl-hero-image {
  position: relative;
  z-index: 1;
  border-radius: var(--vls-radius-lg);
  overflow: hidden;
  box-shadow: var(--vls-shadow-lg);
}

.vsl-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Staircase Types Section */
.vsl-types {
  padding: 70px 0;
  background: var(--vls-white);
}

.vsl-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vsl-type-card {
  position: relative;
  background: var(--vls-light);
  border-radius: var(--vls-radius);
  padding: 36px 28px 32px;
  text-align: center;
  transition: var(--vls-transition);
  border: 2px solid var(--vls-border);
}

.vsl-type-card:hover {
  border-color: var(--vls-primary);
  transform: translateY(-8px);
  box-shadow: var(--vls-shadow-lg);
}

.vsl-type-card.vsl-type-featured {
  border-color: var(--vls-primary);
  background: linear-gradient(180deg, rgba(32, 136, 202, 0.05) 0%, var(--vls-white) 100%);
}

.vsl-type-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vls-gradient);
  color: var(--vls-white);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--vls-radius-full);
  white-space: nowrap;
}

.vsl-type-icon {
  width: 70px;
  height: 70px;
  background: var(--vls-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.vsl-type-icon i {
  font-size: 28px;
  color: var(--vls-white);
}

.vsl-type-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--vls-dark);
  margin: 0 0 10px;
}

.vsl-type-card > p {
  font-size: 13px;
  color: var(--vls-gray);
  line-height: 1.6;
  margin: 0 0 18px;
}

.vsl-type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.vsl-type-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--vls-dark);
  margin-bottom: 8px;
}

.vsl-type-card ul li i {
  color: var(--vls-primary);
  font-size: 12px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
  .vhl-hero-lift {
    width: 38%;
  }
  
  .vhl-customize-layout {
    grid-template-columns: 1fr;
  }
  
  .vhl-customize-preview {
    position: relative;
    top: 0;
  }
  
  .vhl-door-options .vhl-option-item,
  .vhl-glass-options .vhl-option-item {
    min-width: 110px;
    max-width: 140px;
  }
  
  .vsl-hero {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  /* Homelift Hero */
  .vhl-hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 350px;
  }
  
  .vhl-hero-content {
    padding-right: 0;
    max-width: 100%;
  }
  
  .vhl-hero-features {
    justify-content: center;
  }
  
  .vhl-hero-buttons {
    justify-content: center;
  }
  
  .vhl-hero-lift {
    position: absolute;
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
    width: 260px;
  }
  
  /* Stairlift Hero */
  .vsl-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 20px 60px;
    min-height: auto;
  }
  
  .vsl-hero-content {
    max-width: 100%;
    order: 2;
  }
  
  .vsl-hero-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .vsl-hero-features {
    justify-content: center;
  }
  
  .vsl-hero-buttons {
    justify-content: center;
  }
  
  /* Shared */
  .vhl-intro-grid,
  .vsl-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vhl-specs-wrapper,
  .vsl-specs-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vsl-specs-image {
    order: -1;
  }
  
  .vhl-gallery-grid,
  .vsl-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .vhl-gallery-item.vhl-gallery-large,
  .vsl-gallery-item.vsl-gallery-large {
    grid-column: span 2;
    grid-row: span 1;
    height: 250px;
  }
  
  .vhl-gallery-item,
  .vsl-gallery-item {
    height: 160px;
  }
  
  .vhl-features-grid,
  .vsl-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vhl-variants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vhl-faq-grid,
  .vsl-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .vhl-door-options,
  .vhl-glass-options {
    justify-content: center;
  }
  
  .vhl-handrail-options {
    justify-content: center;
  }
  
  .vsl-types-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vhl-hero {
    padding: 90px 16px 300px;
  }
  
  .vsl-hero {
    padding: 90px 16px 50px;
  }
  
  .vhl-trust-grid,
  .vsl-trust-grid {
    gap: 20px;
  }
  
  .vhl-trust-item span,
  .vsl-trust-item span {
    display: none;
  }
  
  .vhl-trust-item i,
  .vsl-trust-item i {
    font-size: 20px;
  }
  
  .vsl-intro-visual {
    grid-template-columns: 1fr;
  }
  
  .vhl-gallery-grid,
  .vsl-gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .vhl-gallery-item.vhl-gallery-large,
  .vsl-gallery-item.vsl-gallery-large {
    grid-column: span 1;
  }
  
  .vhl-specs-floating {
    display: none;
  }
  
  .vhl-door-options .vhl-option-item,
  .vhl-glass-options .vhl-option-item {
    min-width: 100px;
    max-width: 130px;
    padding: 16px 12px 12px;
  }
  
  .vhl-door-options .vhl-option-item img {
    width: 70px;
    height: 105px;
  }
  
  .vhl-glass-options .vhl-option-item img {
    width: 70px;
    height: 90px;
  }
  
  .vhl-handrail-options .vhl-option-item.vhl-option-round {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  
  .vhl-handrail-options .vhl-option-item.vhl-option-round img {
    width: 55px;
    height: 55px;
  }
  
  .vhl-color-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .vhl-features-grid,
  .vsl-features-grid {
    grid-template-columns: 1fr;
  }
  
  .vhl-variants-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .vhl-variant-item img {
    height: 130px;
  }
  
  .vhl-hotspot {
    display: none;
  }
}

@media (max-width: 576px) {
  .vhl-hero {
    padding: 90px 16px 260px;
  }
  
  .vhl-hero-lift {
    width: 220px;
  }
  
  .vhl-hero-buttons,
  .vsl-hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .vhl-hero-btn,
  .vsl-hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .vhl-option-group {
    padding: 20px 16px;
  }
  
  .vhl-door-options,
  .vhl-glass-options {
    gap: 12px;
  }
  
  .vhl-door-options .vhl-option-item,
  .vhl-glass-options .vhl-option-item {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    padding: 14px 10px 10px;
  }
  
  .vhl-door-options .vhl-option-item img {
    width: 60px;
    height: 90px;
    margin-bottom: 10px;
  }
  
  .vhl-glass-options .vhl-option-item img {
    width: 60px;
    height: 75px;
    margin-bottom: 10px;
  }
  
  .vhl-door-options .vhl-option-item span,
  .vhl-glass-options .vhl-option-item span {
    font-size: 11px;
  }
  
  .vhl-handrail-options {
    gap: 12px;
  }
  
  .vhl-handrail-options .vhl-option-item.vhl-option-round {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }
  
  .vhl-handrail-options .vhl-option-item.vhl-option-round img {
    width: 48px;
    height: 48px;
  }
  
  .vhl-color-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .vsl-spec-card {
    padding: 14px 18px;
  }
  
  .vsl-spec-icon {
    width: 44px;
    height: 44px;
  }
  
  .vsl-spec-icon i {
    font-size: 18px;
  }
  
  .vsl-spec-value {
    font-size: 16px;
  }
  
  .vhl-cta-buttons,
  .vsl-cta-buttons {
    flex-direction: column;
  }
  
  .vhl-btn,
  .vsl-btn {
    width: 100%;
    justify-content: center;
  }
  
  .vhl-variants-grid {
    grid-template-columns: 1fr;
  }
  
  .vhl-cta-contact,
  .vsl-cta-contact {
    flex-direction: column;
    gap: 12px;
  }
}


/* ============================================
   VENUS ABOUT PAGE - SPECIAL SECTIONS
   Prefix: vab- (Venus ABout)
   ============================================ */

/* Variables */
:root {
  --vab-primary: #2088ca;
  --vab-primary-dark: #176ba3;
  --vab-gradient: linear-gradient(145deg, #2088ca, #176ba3);
  --vab-dark: #0f172a;
  --vab-gray: #64748b;
  --vab-light: #f8fafc;
  --vab-white: #fff;
  --vab-border: #e2e8f0;
  --vab-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --vab-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --vab-radius: 12px;
  --vab-radius-lg: 20px;
  --vab-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   SECTION 1: ACHIEVEMENTS
   ============================================ */
.vab-achievements {
  position: relative;
  padding: 100px 0;
  background: var(--vab-dark);
  overflow: hidden;
}

.vab-achievements-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(32, 136, 202, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(32, 136, 202, 0.1) 0%, transparent 40%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 1;
}

.vab-achievements-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

.vab-achievements-header {
  text-align: center;
  margin-bottom: 60px;
}

.vab-achievements-tag {
  display: inline-block;
  background: rgba(32, 136, 202, 0.2);
  color: var(--vab-primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(32, 136, 202, 0.3);
}

.vab-achievements-title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: var(--vab-white);
  line-height: 1.2;
  margin: 0 0 16px;
}

.vab-achievements-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.vab-achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.vab-achievement-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vab-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--vab-transition);
  overflow: hidden;
}

.vab-achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vab-gradient);
  transform: scaleX(0);
  transition: var(--vab-transition);
}

.vab-achievement-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(32, 136, 202, 0.3);
  transform: translateY(-8px);
}

.vab-achievement-card:hover::before {
  transform: scaleX(1);
}

.vab-achievement-icon {
  width: 70px;
  height: 70px;
  background: var(--vab-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--vab-transition);
}

.vab-achievement-card:hover .vab-achievement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(32, 136, 202, 0.4);
}

.vab-achievement-icon i {
  font-size: 28px;
  color: var(--vab-white);
}

.vab-achievement-content {
  position: relative;
  z-index: 1;
}

.vab-achievement-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--vab-white);
  line-height: 1;
  margin-bottom: 8px;
  background: var(--vab-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vab-achievement-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vab-achievement-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(32, 136, 202, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--vab-transition);
}

.vab-achievement-card:hover .vab-achievement-decoration {
  transform: scale(1.5);
}

.vab-achievements-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vab-radius-lg);
}

.vab-achievements-cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--vab-white);
  font-size: 16px;
  font-weight: 500;
}

.vab-achievements-cta-text i {
  font-size: 24px;
  color: var(--vab-primary);
  animation: vab-pulse 2s infinite;
}

@keyframes vab-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.vab-achievements-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vab-gradient);
  color: var(--vab-white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--vab-transition);
  box-shadow: 0 8px 25px rgba(32, 136, 202, 0.3);
}

.vab-achievements-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(32, 136, 202, 0.5);
  color: var(--vab-white);
}

.vab-achievements-btn i {
  transition: var(--vab-transition);
}

.vab-achievements-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
   SECTION 2: MANUFACTURING PROCESS
   ============================================ */
.vab-process {
  padding: 100px 0;
  background: var(--vab-light);
}

.vab-process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.vab-process-top {
  margin-bottom: 60px;
}

.vab-process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.vab-process-tag {
  display: inline-block;
  background: var(--vab-gradient);
  color: var(--vab-white);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.vab-process-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--vab-dark);
  line-height: 1.2;
  margin: 0 0 16px;
}

.vab-process-subtitle {
  font-size: 15px;
  color: var(--vab-gray);
  line-height: 1.7;
  margin: 0;
}

.vab-process-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.vab-process-gallery {
  position: sticky;
  top: 100px;
}

.vab-process-gallery-main {
  position: relative;
  border-radius: var(--vab-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--vab-shadow-lg);
}

.vab-process-gallery-main img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: var(--vab-transition);
}

.vab-process-gallery-main:hover img {
  transform: scale(1.05);
}

.vab-process-gallery-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--vab-white);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: var(--vab-shadow);
}

.vab-process-gallery-badge i {
  font-size: 18px;
  color: var(--vab-primary);
}

.vab-process-gallery-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--vab-dark);
}

.vab-process-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.vab-process-gallery-item {
  position: relative;
  border-radius: var(--vab-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.vab-process-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vab-transition);
}

.vab-process-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: var(--vab-transition);
}

.vab-process-gallery-overlay span {
  font-size: 11px;
  font-weight: 600;
  color: var(--vab-white);
  transform: translateY(10px);
  transition: var(--vab-transition);
}

.vab-process-gallery-item:hover img {
  transform: scale(1.1);
}

.vab-process-gallery-item:hover .vab-process-gallery-overlay {
  opacity: 1;
}

.vab-process-gallery-item:hover .vab-process-gallery-overlay span {
  transform: translateY(0);
}

/* Process Steps */
.vab-process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vab-process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--vab-white);
  padding: 28px;
  border-radius: var(--vab-radius-lg);
  border: 1px solid var(--vab-border);
  transition: var(--vab-transition);
  overflow: hidden;
}

.vab-process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--vab-border);
  transition: var(--vab-transition);
}

.vab-process-step:hover {
  border-color: var(--vab-primary);
  transform: translateX(10px);
  box-shadow: var(--vab-shadow);
}

.vab-process-step:hover::before {
  background: var(--vab-gradient);
}

.vab-process-step-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--vab-primary);
  opacity: 0.2;
  line-height: 1;
  min-width: 50px;
  transition: var(--vab-transition);
}

.vab-process-step:hover .vab-process-step-number {
  opacity: 0.4;
}

.vab-process-step-content {
  flex: 1;
}

.vab-process-step-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--vab-dark);
  margin: 0 0 8px;
}

.vab-process-step-content p {
  font-size: 13px;
  color: var(--vab-gray);
  line-height: 1.7;
  margin: 0;
}

.vab-process-step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(32, 136, 202, 0.1) 0%, rgba(32, 136, 202, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--vab-transition);
}

.vab-process-step:hover .vab-process-step-icon {
  background: var(--vab-gradient);
}

.vab-process-step-icon i {
  font-size: 20px;
  color: var(--vab-primary);
  transition: var(--vab-transition);
}

.vab-process-step:hover .vab-process-step-icon i {
  color: var(--vab-white);
}

/* Certifications */
.vab-process-certifications {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--vab-white);
  border-radius: var(--vab-radius-lg);
  border: 1px solid var(--vab-border);
  margin-top: 10px;
}

.vab-process-cert-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--vab-dark);
}

.vab-process-cert-icons {
  display: flex;
  gap: 16px;
}

.vab-process-cert {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--vab-light);
  border-radius: 50px;
  transition: var(--vab-transition);
}

.vab-process-cert:hover {
  background: var(--vab-gradient);
}

.vab-process-cert i {
  font-size: 14px;
  color: var(--vab-primary);
  transition: var(--vab-transition);
}

.vab-process-cert:hover i {
  color: var(--vab-white);
}

.vab-process-cert span {
  font-size: 11px;
  font-weight: 600;
  color: var(--vab-dark);
  transition: var(--vab-transition);
}

.vab-process-cert:hover span {
  color: var(--vab-white);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
  .vab-achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vab-process-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .vab-process-gallery {
    position: relative;
    top: 0;
  }
}

@media (max-width: 992px) {
  .vab-achievements {
    padding: 80px 0;
  }
  
  .vab-achievement-card {
    padding: 32px 24px;
  }
  
  .vab-achievement-number {
    font-size: 40px;
  }
  
  .vab-achievements-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px;
  }
  
  .vab-process {
    padding: 80px 0;
  }
  
  .vab-process-gallery-main img {
    height: 300px;
  }
  
  .vab-process-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .vab-achievements-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .vab-achievement-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 24px;
    gap: 20px;
  }
  
  .vab-achievement-icon {
    margin: 0;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  
  .vab-achievement-icon i {
    font-size: 24px;
  }
  
  .vab-achievement-number {
    font-size: 32px;
  }
  
  .vab-achievement-label {
    font-size: 12px;
  }
  
  .vab-achievement-decoration {
    display: none;
  }
  
  .vab-achievements-cta-text {
    flex-direction: column;
    gap: 8px;
  }
  
  .vab-process-gallery-main img {
    height: 250px;
  }
  
  .vab-process-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .vab-process-step {
    padding: 20px;
    gap: 16px;
  }
  
  .vab-process-step-number {
    font-size: 28px;
    min-width: 40px;
  }
  
  .vab-process-step-icon {
    display: none;
  }
  
  .vab-process-certifications {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .vab-process-cert-icons {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .vab-achievements {
    padding: 60px 0;
  }
  
  .vab-achievements-header {
    margin-bottom: 40px;
  }
  
  .vab-achievements-btn {
    width: 100%;
    justify-content: center;
  }
  
  .vab-process {
    padding: 60px 0;
  }
  
  .vab-process-gallery-badge {
    padding: 10px 16px;
  }
  
  .vab-process-gallery-badge span {
    font-size: 12px;
  }
  
  .vab-process-step-content h4 {
    font-size: 15px;
  }
  
  .vab-process-step-content p {
    font-size: 12px;
  }
}


/* ============================================
   VENUS CABIN SWIPER SECTION
   Prefix: vcb- (Venus CaBin)
   ============================================ */

:root {
  --vcb-primary: #2088ca;
  --vcb-primary-dark: #176ba3;
  --vcb-gradient: linear-gradient(145deg, #2088ca, #176ba3);
  --vcb-dark: #0f172a;
  --vcb-gray: #64748b;
  --vcb-light: #f8fafc;
  --vcb-white: #fff;
  --vcb-border: #e2e8f0;
  --vcb-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  --vcb-shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
  --vcb-glow: 0 0 40px rgba(32, 136, 202, 0.4), 0 0 80px rgba(32, 136, 202, 0.2), 0 20px 60px rgba(32, 136, 202, 0.3);
  --vcb-radius: 20px;
  --vcb-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section */
.vcb-section {
  max-width: 1400px;
     margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, var(--vcb-white) 0%, var(--vcb-light) 100%);
  overflow: hidden;
  position: relative;
}

.vcb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(32, 136, 202, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(32, 136, 202, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.vcb-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Header */
.vcb-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 24px;
}

.vcb-header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vcb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vcb-gradient);
  color: var(--vcb-white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(32, 136, 202, 0.3);
}

.vcb-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--vcb-dark);
  margin: 0;
  line-height: 1.15;
}

.vcb-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vcb-white);
  color: var(--vcb-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--vcb-primary);
  transition: var(--vcb-transition);
  white-space: nowrap;
}

.vcb-view-btn:hover {
  background: var(--vcb-gradient);
  color: var(--vcb-white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(32, 136, 202, 0.35);
}

.vcb-view-btn i {
  font-size: 12px;
  transition: var(--vcb-transition);
}

.vcb-view-btn:hover i {
  transform: translateX(6px);
}

/* Swiper Wrapper */
.vcb-swiper-wrapper {
  position: relative;
  margin: 0 -40px;
  padding: 40px 40px 60px;
}

/* Swiper Container */
.vcb-swiper {
  overflow: visible !important;
}

.vcb-swiper .swiper-wrapper {
  align-items: stretch;
}

/* Slides */
.vcb-slide {
  height: auto;
  opacity: 0.5;
  transform: scale(0.9);
  transition: var(--vcb-transition);
}

.vcb-slide.swiper-slide-active,
.vcb-slide.swiper-slide-next,
.vcb-slide.swiper-slide-prev {
  opacity: 1;
  transform: scale(1);
}

.vcb-slide.swiper-slide-active {
  z-index: 2;
}

/* Card */
.vcb-card {
  display: flex;
  flex-direction: column;
  background: var(--vcb-white);
  border-radius: var(--vcb-radius);
  overflow: hidden;
  text-decoration: none;
  transition: var(--vcb-transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

/* HOVER: Outer Glow Effect */
.vcb-card:hover {
  border-color: rgba(32, 136, 202, 0.3);
}

/* Card Image */
.vcb-card-image {
  position: relative;
  height: 380px;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef5fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vcb-card-image::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(32, 136, 202, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--vcb-transition);
}

.vcb-card:hover .vcb-card-image::before {
  transform: scale(1.5);
  background: radial-gradient(circle, rgba(32, 136, 202, 0.12) 0%, transparent 70%);
}

.vcb-card-image img {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: var(--vcb-transition);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.vcb-card:hover .vcb-card-image img {
  transform: scale(1.1) translateY(-10px);
  filter: drop-shadow(0 30px 50px rgba(32, 136, 202, 0.2));
}

/* Glass Wipe / Shine Effect */
.vcb-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg, 
    transparent 20%, 
    rgba(255, 255, 255, 0.5) 50%, 
    transparent 80%
  );
  transform: skewX(-25deg);
  transition: none;
}

.vcb-card:hover .vcb-card-image::after {
  animation: vcb-shine 0.8s ease forwards;
}

@keyframes vcb-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

/* Card Info */
.vcb-card-info {
  padding: 28px;
  text-align: center;
  background: var(--vcb-white);
  position: relative;
  transition: var(--vcb-transition);
}

.vcb-card:hover .vcb-card-info {
  background: linear-gradient(180deg, rgba(32, 136, 202, 0.02) 0%, var(--vcb-white) 100%);
}

.vcb-card-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--vcb-dark);
  margin: 0 0 12px;
  transition: var(--vcb-transition);
}

.vcb-card:hover .vcb-card-info h3 {
  color: var(--vcb-primary);
}

/* Icon Badge - Normal State */
.vcb-card-info span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vcb-gray);
  background: var(--vcb-light);
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--vcb-transition);
  border: 1px solid transparent;
}

.vcb-card-info span img {
  width: 16px;
  height: 20px;
  transition: var(--vcb-transition);
}

/* Icon Badge - HOVER: Reversed Colors */
.vcb-card:hover .vcb-card-info span {
  background: var(--vcb-gradient);
  color: var(--vcb-white);
  border-color: transparent;
  box-shadow: 0 5px 20px rgba(32, 136, 202, 0.3);
  transform: translateY(-2px);
}

.vcb-card:hover .vcb-card-info span img {
  filter: brightness(0) invert(1);
}

/* Navigation */
.vcb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.vcb-nav-btn {
  width: 56px;
  height: 56px;
  background: var(--vcb-white);
  border: 2px solid var(--vcb-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--vcb-transition);
  position: relative;
  overflow: hidden;
}

.vcb-nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vcb-gradient);
  opacity: 0;
  transition: var(--vcb-transition);
}

.vcb-nav-btn i {
  font-size: 16px;
  color: var(--vcb-dark);
  transition: var(--vcb-transition);
  position: relative;
  z-index: 1;
}

.vcb-nav-btn:hover {
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(32, 136, 202, 0.4), 0 10px 30px rgba(32, 136, 202, 0.25);
}

.vcb-nav-btn:hover::before {
  opacity: 1;
}

.vcb-nav-btn:hover i {
  color: var(--vcb-white);
}

.vcb-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.vcb-nav-btn.swiper-button-disabled:hover {
  border-color: var(--vcb-border);
  box-shadow: none;
}

.vcb-nav-btn.swiper-button-disabled:hover::before {
  opacity: 0;
}

.vcb-nav-btn.swiper-button-disabled:hover i {
  color: var(--vcb-dark);
}

/* Pagination */
.vcb-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vcb-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--vcb-border);
  opacity: 1;
  transition: var(--vcb-transition);
  border-radius: 10px;
}

.vcb-pagination .swiper-pagination-bullet-active {
  width: 32px;
  background: var(--vcb-gradient);
  box-shadow: 0 2px 10px rgba(32, 136, 202, 0.3);
}

/* Progress Bar */
.vcb-progress {
  position: relative;
  width: 120px;
  height: 4px;
  background: var(--vcb-border);
  border-radius: 10px;
  overflow: hidden;
}

.vcb-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--vcb-gradient);
  border-radius: 10px;
  transition: width 0.1s linear;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
  .vcb-container {
    padding: 0 30px;
  }
  
  .vcb-swiper-wrapper {
    margin: 0 -30px;
    padding: 30px 30px 50px;
  }
  
  .vcb-card-image {
    height: 340px;
  }
}

@media (max-width: 1200px) {
  .vcb-section {
    padding: 80px 0 100px;
  }
  
  .vcb-card-image {
    height: 320px;
  }
  
  .vcb-card-info {
    padding: 24px;
  }
  
  .vcb-card-info h3 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .vcb-section {
    padding: 70px 0 90px;
  }
  
  .vcb-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .vcb-header-right {
    width: 100%;
  }
  
  .vcb-view-btn {
    width: 100%;
    justify-content: center;
  }
  
  .vcb-card-image {
    height: 300px;
  }
  
  .vcb-nav-btn {
    width: 50px;
    height: 50px;
  }
  
  .vcb-controls {
    gap: 16px;
    margin-top: 40px;
  }
  
  :root {
    --vcb-glow: 0 0 30px rgba(32, 136, 202, 0.35), 0 0 60px rgba(32, 136, 202, 0.15), 0 15px 40px rgba(32, 136, 202, 0.25);
  }
}

@media (max-width: 768px) {
  .vcb-section {
    padding: 60px 0 80px;
  }
  
  .vcb-container {
    padding: 0 20px;
  }
  
  .vcb-swiper-wrapper {
    margin: 0 -20px;
    padding: 25px 20px 40px;
  }
  
  .vcb-header {
    margin-bottom: 35px;
  }
  
  .vcb-card-image {
    height: 280px;
  }
  
  .vcb-card-info {
    padding: 20px;
  }
  
  .vcb-card-info h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .vcb-card-info span {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .vcb-slide {
    opacity: 0.7;
    transform: scale(0.95);
  }
  
  .vcb-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }
  
  .vcb-nav-btn {
    width: 46px;
    height: 46px;
  }
  
  .vcb-nav-btn i {
    font-size: 14px;
  }
  
  .vcb-progress {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .vcb-section {
    padding: 50px 0 70px;
  }
  
  .vcb-container {
    padding: 0 16px;
  }
  
  .vcb-swiper-wrapper {
    margin: 0 -16px;
    padding: 20px 16px 35px;
  }
  
  .vcb-tag {
    font-size: 10px;
    padding: 6px 14px;
  }
  
  .vcb-title {
    font-size: 28px;
  }
  
  .vcb-view-btn {
    padding: 14px 24px;
    font-size: 13px;
  }
  
  .vcb-card-image {
    height: 260px;
  }
  
  .vcb-card-image img {
    max-width: 85%;
    max-height: 85%;
  }
  
  .vcb-card-info {
    padding: 18px 16px;
  }
  
  .vcb-card-info h3 {
    font-size: 16px;
  }
  
  .vcb-card-info span {
    font-size: 11px;
    padding: 7px 14px;
  }
  
  .vcb-controls {
    gap: 12px;
    margin-top: 30px;
  }
  
  .vcb-nav-btn {
    width: 42px;
    height: 42px;
  }
  
  .vcb-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  
  .vcb-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }
  
  .vcb-progress {
    width: 60px;
    height: 3px;
  }
  
  :root {
    --vcb-glow: 0 0 25px rgba(32, 136, 202, 0.3), 0 10px 30px rgba(32, 136, 202, 0.2);
  }
}

@media (max-width: 400px) {
  .vcb-card-image {
    height: 230px;
  }
  
  .vcb-card-info h3 {
    font-size: 15px;
  }
  
  .vcb-card-info span {
    font-size: 11px;
    padding: 6px 12px;
  }
}



/* ============================================
   VENUS ELEVATOR TYPES SECTION - LIGHT THEME
   Prefix: vet- (Venus Elevator Types)
   ============================================ */

:root {
  --vet-primary: #2088ca;
  --vet-primary-dark: #176ba3;
  --vet-primary-light: #e8f4fc;
  --vet-gradient: linear-gradient(145deg, #2088ca, #176ba3);
  --vet-dark: #0f172a;
  --vet-gray: #64748b;
  --vet-gray-light: #94a3b8;
  --vet-light: #f8fafc;
  --vet-lighter: #f1f5f9;
  --vet-white: #fff;
  --vet-border: #e2e8f0;
  --vet-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --vet-shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --vet-glow: 0 0 50px rgba(32, 136, 202, 0.25), 0 0 100px rgba(32, 136, 202, 0.15);
  --vet-radius: 24px;
  --vet-radius-sm: 16px;
  --vet-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section */
.vet-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--vet-white) 0%, var(--vet-light) 100%);
  overflow: hidden;
}

.vet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(32, 136, 202, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(32, 136, 202, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.vet-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 1;
}

/* Header */
.vet-header {
  text-align: center;
  margin-bottom: 60px;
}

.vet-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vet-gradient);
  color: var(--vet-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(32, 136, 202, 0.3);
}

.vet-tag i {
  font-size: 14px;
}

.vet-title {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  color: var(--vet-dark);
  margin: 0 0 16px;
  line-height: 1.1;
}

.vet-subtitle {
  font-size: 16px;
  color: var(--vet-gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.vet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.vet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--vet-white);
  border: 1px solid var(--vet-border);
  border-radius: var(--vet-radius);
  text-decoration: none;
  overflow: hidden;
  transition: var(--vet-transition);
}

.vet-card:hover {
  border-color: rgba(32, 136, 202, 0.3);
  box-shadow: var(--vet-glow);
}

/* Featured Card */
.vet-card.vet-card-featured {
  border-color: rgba(32, 136, 202, 0.2);
  background: linear-gradient(180deg, var(--vet-primary-light) 0%, var(--vet-white) 30%);
}

.vet-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--vet-gradient);
  color: var(--vet-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(32, 136, 202, 0.4);
}

/* Card Image - JPG Version */
.vet-card-image {
  position: relative;
  height: 260px;
  background: var(--vet-light);
  overflow: hidden;
}

.vet-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.02) 100%);
  z-index: 1;
  pointer-events: none;
}

.vet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vet-transition);
}

.vet-card:hover .vet-card-image img {
  transform: scale(1.06);
}

/* Shine Effect */
.vet-card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 80%
  );
  transform: skewX(-25deg);
  z-index: 3;
  pointer-events: none;
}

.vet-card:hover .vet-card-shine {
  animation: vet-shine 0.8s ease forwards;
}

@keyframes vet-shine {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* Card Content */
.vet-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vet-card-icon {
  width: 52px;
  height: 52px;
  background: var(--vet-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--vet-transition);
  box-shadow: 0 8px 25px rgba(32, 136, 202, 0.25);
}

.vet-card:hover .vet-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(32, 136, 202, 0.4);
}

.vet-card-icon i {
  font-size: 22px;
  color: var(--vet-white);
}

.vet-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vet-dark);
  margin: 0 0 10px;
  transition: var(--vet-transition);
}

.vet-card:hover .vet-card-title {
  color: var(--vet-primary);
}

.vet-card-desc {
  font-size: 14px;
  color: var(--vet-gray);
  line-height: 1.7;
  margin: 0 0 18px;
  flex: 1;
}

/* Card Footer */
.vet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--vet-border);
}

.vet-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vet-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--vet-gray);
  background: var(--vet-light);
  padding: 5px 10px;
  border-radius: 50px;
  transition: var(--vet-transition);
}

.vet-card:hover .vet-card-specs span {
  background: var(--vet-primary-light);
  color: var(--vet-primary-dark);
}

.vet-card-specs span i {
  font-size: 10px;
  color: var(--vet-primary);
}

.vet-card-arrow {
  width: 44px;
  height: 44px;
  background: var(--vet-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--vet-transition);
}

.vet-card-arrow i {
  font-size: 15px;
  color: var(--vet-gray);
  transition: var(--vet-transition);
}

.vet-card:hover .vet-card-arrow {
  background: var(--vet-gradient);
  box-shadow: 0 8px 25px rgba(32, 136, 202, 0.35);
}

.vet-card:hover .vet-card-arrow i {
  color: var(--vet-white);
  transform: translateX(3px);
}

/* Bottom CTA */
.vet-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding: 28px 36px;
  background: var(--vet-white);
  border: 1px solid var(--vet-border);
  border-radius: var(--vet-radius);
  box-shadow: var(--vet-shadow);
}

.vet-cta-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vet-cta-content > i {
  width: 56px;
  height: 56px;
  background: var(--vet-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--vet-primary);
  flex-shrink: 0;
}

.vet-cta-text p {
  font-size: 17px;
  font-weight: 700;
  color: var(--vet-dark);
  margin: 0 0 4px;
}

.vet-cta-text span {
  font-size: 14px;
  color: var(--vet-gray);
}

.vet-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vet-gradient);
  color: var(--vet-white);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--vet-transition);
  box-shadow: 0 8px 30px rgba(32, 136, 202, 0.3);
  white-space: nowrap;
}

.vet-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(32, 136, 202, 0.45);
  color: var(--vet-white);
}

.vet-cta-btn i {
  font-size: 13px;
  transition: var(--vet-transition);
}

.vet-cta-btn:hover i {
  transform: translateX(4px);
}

/* ============================================
   RESPONSIVE - 1200px
   ============================================ */
@media (max-width: 1200px) {
  .vet-container {
    padding: 0 30px;
  }
  
  .vet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .vet-card-image {
    height: 240px;
  }
}

/* ============================================
   RESPONSIVE - 992px
   ============================================ */
@media (max-width: 992px) {
  .vet-section {
    padding: 80px 0;
  }
  
  .vet-container {
    padding: 0 24px;
  }
  
  .vet-header {
    margin-bottom: 50px;
  }
  
  .vet-card-image {
    height: 220px;
  }
  
  .vet-card-content {
    padding: 20px;
  }
  
  .vet-card-title {
    font-size: 18px;
  }
  
  .vet-card-icon {
    width: 48px;
    height: 48px;
  }
  
  .vet-card-icon i {
    font-size: 20px;
  }
  
  .vet-cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 28px 24px;
  }
  
  .vet-cta-content {
    flex-direction: column;
    gap: 14px;
  }
  
  .vet-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (max-width: 768px) {
  .vet-section {
    padding: 60px 0;
  }
  
  .vet-container {
    padding: 0 16px;
  }
  
  .vet-header {
    margin-bottom: 40px;
  }
  
  .vet-tag {
    font-size: 10px;
    padding: 8px 18px;
    gap: 8px;
  }
  
  .vet-title {
    font-size: 28px;
  }
  
  .vet-subtitle {
    font-size: 14px;
  }
  
  .vet-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Horizontal Card Layout */
  .vet-card {
    flex-direction: row;
    align-items: stretch;
  }
  
  .vet-card-image {
    width: 38%;
    height: auto;
    min-height: 180px;
    flex-shrink: 0;
    border-radius: var(--vet-radius) 0 0 var(--vet-radius);
  }
  
  .vet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .vet-card-content {
    width: 62%;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .vet-card-badge {
    top: 10px;
    right: auto;
    left: 10px;
    padding: 4px 10px;
    font-size: 8px;
  }
  
  .vet-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 10px;
  }
  
  .vet-card-icon i {
    font-size: 17px;
  }
  
  .vet-card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .vet-card-desc {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .vet-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
  }
  
  .vet-card-specs {
    gap: 6px;
  }
  
  .vet-card-specs span {
    font-size: 9px;
    padding: 4px 8px;
  }
  
  .vet-card-arrow {
    width: 36px;
    height: 36px;
  }
  
  .vet-card-arrow i {
    font-size: 13px;
  }
  
  .vet-cta {
    padding: 22px 18px;
    margin-top: 36px;
    border-radius: 18px;
  }
  
  .vet-cta-content > i {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .vet-cta-text p {
    font-size: 15px;
  }
  
  .vet-cta-text span {
    font-size: 12px;
  }
  
  .vet-cta-btn {
    padding: 14px 24px;
    font-size: 13px;
  }
}

/* ============================================
   RESPONSIVE - 480px (Small Mobile)
   ============================================ */
@media (max-width: 480px) {
  .vet-section {
    padding: 50px 0;
  }
  
  .vet-container {
    padding: 0 14px;
  }
  
  .vet-header {
    margin-bottom: 32px;
  }
  
  .vet-tag {
    font-size: 9px;
    padding: 6px 14px;
    gap: 6px;
    margin-bottom: 14px;
  }
  
  .vet-tag i {
    font-size: 10px;
  }
  
  .vet-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .vet-subtitle {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .vet-grid {
    gap: 14px;
  }
  
  /* Vertical Card Layout on Small Mobile */
  .vet-card {
    flex-direction: column;
    border-radius: 18px;
  }
  
  .vet-card-image {
    width: 100%;
    height: 180px;
    min-height: auto;
    border-radius: 18px 18px 0 0;
  }
  
  .vet-card-content {
    width: 100%;
    padding: 16px;
  }
  
  .vet-card-badge {
    top: 12px;
    left: auto;
    right: 12px;
    padding: 5px 10px;
    font-size: 8px;
  }
  
  .vet-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  
  .vet-card-icon i {
    font-size: 15px;
  }
  
  .vet-card-title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .vet-card-desc {
    font-size: 12px;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }
  
  .vet-card-footer {
    gap: 10px;
    padding-top: 12px;
  }
  
  .vet-card-specs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .vet-card-specs span {
    font-size: 9px;
    padding: 4px 8px;
  }
  
  .vet-card-specs span i {
    font-size: 8px;
  }
  
  .vet-card-arrow {
    width: 34px;
    height: 34px;
  }
  
  .vet-card-arrow i {
    font-size: 12px;
  }
  
  .vet-cta {
    padding: 18px 14px;
    margin-top: 28px;
    border-radius: 14px;
  }
  
  .vet-cta-content > i {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .vet-cta-text p {
    font-size: 14px;
  }
  
  .vet-cta-text span {
    font-size: 11px;
  }
  
  .vet-cta-btn {
    padding: 12px 20px;
    font-size: 12px;
    gap: 8px;
  }
  
  .vet-cta-btn i {
    font-size: 11px;
  }
}
```

---
.catalogs-section {
  padding: 80px 20px;
  background-color: #f8f9fa;
}

.catalogs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.catalogs-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.catalog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.catalog-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.05);
}

.catalog-info {
  padding: 20px 24px;
}

.catalog-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}

.catalog-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #666;
  background: #f0f0f0;
  padding: 6px 12px;
  border-radius: 20px;
}

.catalog-language svg {
  color: #888;
}



/* ============================================
   VENUS CABIN PRODUCT DETAIL SECTION
   Prefix: vcp- (Venus Cabin Product)
   ============================================ */

:root {
  --vcp-primary: #2088ca;
  --vcp-primary-dark: #176ba3;
  --vcp-primary-light: #e8f4fc;
  --vcp-gradient: linear-gradient(145deg, #2088ca, #176ba3);
  --vcp-dark: #0f172a;
  --vcp-gray: #64748b;
  --vcp-gray-light: #94a3b8;
  --vcp-light: #f8fafc;
  --vcp-lighter: #f1f5f9;
  --vcp-white: #fff;
  --vcp-border: #e2e8f0;
  --vcp-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --vcp-shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --vcp-glow: 0 0 40px rgba(32, 136, 202, 0.2), 0 0 80px rgba(32, 136, 202, 0.1);
  --vcp-radius: 20px;
  --vcp-radius-sm: 12px;
  --vcp-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section */
.vcp-section {
  padding: 40px 0 100px;
  background: linear-gradient(180deg, var(--vcp-white) 0%, var(--vcp-light) 100%);
  min-height: 100vh;
}

.vcp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Breadcrumb */
.vcp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 13px;
}

.vcp-breadcrumb a {
  color: var(--vcp-gray);
  text-decoration: none;
  transition: var(--vcp-transition);
}

.vcp-breadcrumb a:hover {
  color: var(--vcp-primary);
}

.vcp-breadcrumb i.fa-chevron-right {
  font-size: 10px;
  color: var(--vcp-gray-light);
}

.vcp-breadcrumb span {
  color: var(--vcp-dark);
  font-weight: 600;
}

/* Wrapper */
.vcp-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ============================================
   GALLERY
   ============================================ */
.vcp-gallery {
  display: flex;
  gap: 20px;
  position: sticky;
  top: 100px;
}

/* Thumbnails */
.vcp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vcp-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid var(--vcp-border);
  border-radius: var(--vcp-radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--vcp-white);
  padding: 0;
  transition: var(--vcp-transition);
}

.vcp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vcp-transition);
}

.vcp-thumb:hover {
  border-color: var(--vcp-primary);
}

.vcp-thumb.vcp-thumb-active {
  border-color: var(--vcp-primary);
  box-shadow: 0 0 0 3px rgba(32, 136, 202, 0.2);
}

.vcp-thumb:hover img,
.vcp-thumb.vcp-thumb-active img {
  transform: scale(1.1);
}

/* Main Image */
.vcp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vcp-main-inner {
  position: relative;
  background: linear-gradient(180deg, var(--vcp-lighter) 0%, var(--vcp-light) 100%);
  border-radius: var(--vcp-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vcp-border);
}

.vcp-main-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: var(--vcp-transition);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.vcp-main-inner:hover .vcp-main-img {
  transform: scale(1.05);
}

/* Shine Effect */
.vcp-main-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 80%
  );
  transform: skewX(-25deg);
  pointer-events: none;
}

.vcp-main-inner:hover .vcp-main-shine {
  animation: vcp-shine 0.8s ease forwards;
}

@keyframes vcp-shine {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* Zoom Button */
.vcp-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--vcp-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vcp-transition);
  box-shadow: var(--vcp-shadow);
}

.vcp-zoom i {
  font-size: 16px;
  color: var(--vcp-dark);
  transition: var(--vcp-transition);
}

.vcp-zoom:hover {
  background: var(--vcp-gradient);
  transform: scale(1.1);
}

.vcp-zoom:hover i {
  color: var(--vcp-white);
}

/* Badge */
.vcp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--vcp-gradient);
  color: var(--vcp-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(32, 136, 202, 0.3);
}

.vcp-badge i {
  font-size: 10px;
}

/* Image Navigation */
.vcp-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.vcp-main-prev,
.vcp-main-next {
  width: 40px;
  height: 40px;
  background: var(--vcp-white);
  border: 1px solid var(--vcp-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vcp-transition);
}

.vcp-main-prev i,
.vcp-main-next i {
  font-size: 12px;
  color: var(--vcp-gray);
  transition: var(--vcp-transition);
}

.vcp-main-prev:hover,
.vcp-main-next:hover {
  background: var(--vcp-gradient);
  border-color: transparent;
}

.vcp-main-prev:hover i,
.vcp-main-next:hover i {
  color: var(--vcp-white);
}

.vcp-main-dots {
  display: flex;
  gap: 8px;
}

.vcp-dot {
  width: 8px;
  height: 8px;
  background: var(--vcp-border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--vcp-transition);
}

.vcp-dot:hover {
  background: var(--vcp-gray-light);
}

.vcp-dot.vcp-dot-active {
  width: 24px;
  border-radius: 10px;
  background: var(--vcp-gradient);
}

/* ============================================
   PRODUCT INFO
   ============================================ */
.vcp-info {
  padding: 20px 0;
}

/* Category */
.vcp-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vcp-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: var(--vcp-transition);
}

.vcp-category i {
  font-size: 14px;
}

.vcp-category:hover {
  color: var(--vcp-primary-dark);
}

/* Title */
.vcp-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--vcp-dark);
  margin: 0 0 8px;
  line-height: 1.1;
}

/* Subtitle */
.vcp-subtitle {
  font-size: 18px;
  color: var(--vcp-gray);
  margin: 0 0 16px;
  font-weight: 500;
}

/* Rating */
.vcp-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.vcp-stars {
  display: flex;
  gap: 4px;
}

.vcp-stars i {
  font-size: 14px;
  color: #f59e0b;
}

.vcp-rating-text {
  font-size: 13px;
  color: var(--vcp-gray);
}

/* Description */
.vcp-desc {
  font-size: 15px;
  color: var(--vcp-gray);
  line-height: 1.8;
  margin: 0 0 28px;
}

/* Features Grid */
.vcp-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.vcp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--vcp-light);
  border-radius: var(--vcp-radius-sm);
  border: 1px solid var(--vcp-border);
  transition: var(--vcp-transition);
}

.vcp-feature:hover {
  border-color: var(--vcp-primary);
  background: var(--vcp-white);
  box-shadow: var(--vcp-shadow);
}

.vcp-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--vcp-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vcp-feature-icon i {
  font-size: 18px;
  color: var(--vcp-white);
}

.vcp-feature-text span {
  display: block;
  font-size: 11px;
  color: var(--vcp-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.vcp-feature-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--vcp-dark);
}

/* Material Selector */
.vcp-materials {
  margin-bottom: 28px;
}

.vcp-materials-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vcp-dark);
  margin-bottom: 12px;
}

.vcp-materials-list {
  display: flex;
  gap: 10px;
}

.vcp-material {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--vcp-white);
  cursor: pointer;
  transition: var(--vcp-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.vcp-material:hover {
  transform: scale(1.15);
}

.vcp-material.vcp-material-active {
  box-shadow: 0 0 0 3px var(--vcp-primary), 0 4px 12px rgba(32, 136, 202, 0.3);
}

/* Action Buttons */
.vcp-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.vcp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--vcp-transition);
  flex: 1;
}

.vcp-btn-primary {
  background: var(--vcp-gradient);
  color: var(--vcp-white);
  box-shadow: 0 8px 25px rgba(32, 136, 202, 0.3);
}

.vcp-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(32, 136, 202, 0.45);
  color: var(--vcp-white);
}

.vcp-btn-secondary {
  background: var(--vcp-white);
  color: var(--vcp-primary);
  border: 2px solid var(--vcp-primary);
}

.vcp-btn-secondary:hover {
  background: var(--vcp-primary);
  color: var(--vcp-white);
  transform: translateY(-3px);
}

.vcp-btn i {
  font-size: 16px;
}

/* Additional Links */
.vcp-links {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--vcp-border);
}

.vcp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vcp-gray);
  text-decoration: none;
  transition: var(--vcp-transition);
}

.vcp-link i {
  font-size: 14px;
  color: var(--vcp-primary);
}

.vcp-link:hover {
  color: var(--vcp-primary);
}

/* Trust Badges */
.vcp-trust {
  display: flex;
  gap: 24px;
}

.vcp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vcp-trust-item i {
  font-size: 16px;
  color: var(--vcp-primary);
}

.vcp-trust-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--vcp-gray);
}

/* ============================================
   RESPONSIVE - 1200px
   ============================================ */
@media (max-width: 1200px) {
  .vcp-container {
    padding: 0 30px;
  }
  
  .vcp-wrapper {
    gap: 50px;
  }
  
  .vcp-thumb {
    width: 70px;
    height: 70px;
  }
  
  .vcp-features {
    gap: 12px;
  }
  
  .vcp-feature {
    padding: 14px;
  }
}

/* ============================================
   RESPONSIVE - 992px
   ============================================ */
@media (max-width: 992px) {
  .vcp-section {
    padding: 30px 0 80px;
  }
  
  .vcp-container {
    padding: 0 24px;
  }
  
  .vcp-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .vcp-gallery {
    position: relative;
    top: 0;
    flex-direction: column-reverse;
    gap: 16px;
  }
  
  .vcp-thumbs {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .vcp-thumb {
    width: 65px;
    height: 65px;
  }
  
  .vcp-main-inner {
    aspect-ratio: 1 / 1;
    max-height: 500px;
  }
  
  .vcp-info {
    padding: 0;
  }
  
  .vcp-title {
    font-size: 36px;
  }
  
  .vcp-trust {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (max-width: 768px) {
  .vcp-section {
    padding: 20px 0 60px;
  }
  
  .vcp-container {
    padding: 0 16px;
  }
  
  .vcp-breadcrumb {
    margin-bottom: 24px;
    font-size: 12px;
    gap: 8px;
  }
  
  .vcp-thumb {
    width: 56px;
    height: 56px;
  }
  
  .vcp-badge {
    padding: 6px 12px;
    font-size: 9px;
  }
  
  .vcp-zoom {
    width: 38px;
    height: 38px;
  }
  
  .vcp-zoom i {
    font-size: 14px;
  }
  
  .vcp-main-prev,
  .vcp-main-next {
    width: 36px;
    height: 36px;
  }
  
  .vcp-category {
    font-size: 11px;
  }
  
  .vcp-title {
    font-size: 30px;
  }
  
  .vcp-subtitle {
    font-size: 16px;
  }
  
  .vcp-desc {
    font-size: 14px;
  }
  
  .vcp-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .vcp-feature {
    padding: 14px;
  }
  
  .vcp-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .vcp-feature-icon i {
    font-size: 16px;
  }
  
  .vcp-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .vcp-btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .vcp-links {
    flex-direction: column;
    gap: 14px;
  }
  
  .vcp-trust {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   RESPONSIVE - 480px
   ============================================ */
@media (max-width: 480px) {
  .vcp-section {
    padding: 16px 0 50px;
  }
  
  .vcp-container {
    padding: 0 14px;
  }
  
  .vcp-breadcrumb {
    font-size: 11px;
    gap: 6px;
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .vcp-thumbs {
    gap: 8px;
  }
  
  .vcp-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }
  
  .vcp-main-inner {
    border-radius: 16px;
  }
  
  .vcp-badge {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 8px;
    gap: 4px;
  }
  
  .vcp-zoom {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }
  
  .vcp-zoom i {
    font-size: 12px;
  }
  
  .vcp-main-nav {
    gap: 14px;
  }
  
  .vcp-main-prev,
  .vcp-main-next {
    width: 32px;
    height: 32px;
  }
  
  .vcp-main-prev i,
  .vcp-main-next i {
    font-size: 10px;
  }
  
  .vcp-dot {
    width: 6px;
    height: 6px;
  }
  
  .vcp-dot.vcp-dot-active {
    width: 18px;
  }
  
  .vcp-category {
    font-size: 10px;
    margin-bottom: 12px;
  }
  
  .vcp-title {
    font-size: 26px;
    margin-bottom: 6px;
  }
  
  .vcp-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .vcp-rating {
    margin-bottom: 18px;
    gap: 10px;
  }
  
  .vcp-stars i {
    font-size: 12px;
  }
  
  .vcp-rating-text {
    font-size: 12px;
  }
  
  .vcp-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  
  .vcp-feature {
    padding: 12px;
    gap: 12px;
  }
  
  .vcp-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  
  .vcp-feature-icon i {
    font-size: 14px;
  }
  
  .vcp-feature-text span {
    font-size: 10px;
  }
  
  .vcp-feature-text strong {
    font-size: 13px;
  }
  
  .vcp-materials {
    margin-bottom: 22px;
  }
  
  .vcp-materials-label {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .vcp-materials-list {
    gap: 8px;
  }
  
  .vcp-material {
    width: 32px;
    height: 32px;
  }
  
  .vcp-actions {
    margin-bottom: 20px;
  }
  
  .vcp-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .vcp-btn i {
    font-size: 14px;
  }
  
  .vcp-links {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }
  
  .vcp-link {
    font-size: 12px;
  }
  
  .vcp-link i {
    font-size: 13px;
  }
  
  .vcp-trust-item i {
    font-size: 14px;
  }
  
  .vcp-trust-item span {
    font-size: 11px;
  }
}