@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@300;400;500;700;800&display=swap");

:root {
  /* --red: #cc2229;
  --red-dark: #a81b21;
  --red-light: #f05058;
  --navy: #00366d;
  --navy-light: #243d78;
  --navy-lighter: #2e509f; */

  /* Ø§Ù„ÙˆØ±Ø¯ÙŠ Ø§Ù„Ø¬Ø¯ÙŠØ¯ - Ø§Ù„Ø£Ø³Ø§Ø³ÙŠ Ø¨Ø¯Ù„Ø§Ù‹ Ù…Ù† Ø§Ù„Ø£Ø­Ù…Ø± */
  --red: #e96688;
  /* Ø§Ù„Ø¯Ø±Ø¬Ø© Ø§Ù„Ù„ÙŠ Ø§Ø®ØªØ±ØªÙ‡Ø§ */
  --red-dark: #c14d6b;
  /* Ø¯Ø±Ø¬Ø© Ø£ØºÙ…Ù‚ Ù„Ù„Ø¸Ù„Ø§Ù„ */
  --red-light: #ff8ca9;
  /* Ø¯Ø±Ø¬Ø© ÙØ§ØªØ­Ø© Ù„Ù„ØªØ£Ø«ÙŠØ±Ø§Øª */

  /* Ø§Ù„Ø£Ø²Ø±Ù‚ Ø§Ù„Ø¬Ø¯ÙŠØ¯ - Ø§Ù„ÙƒØ­Ù„ÙŠ */
  --navy: #00366d;
  /* Ø§Ù„Ø¯Ø±Ø¬Ø© Ø§Ù„Ù„ÙŠ Ø§Ø®ØªØ±ØªÙ‡Ø§ */
  --navy-light: #1a518a;
  /* Ø¯Ø±Ø¬Ø© Ø£ÙØªØ­ Ù‚Ù„ÙŠÙ„Ø§Ù‹ Ù„Ù„Ø£Ø²Ø±Ø§Ø± */
  --navy-lighter: #2e69a8;
  /* Ø¯Ø±Ø¬Ø© ÙØ§ØªØ­Ø© Ø¬Ø¯Ø§Ù‹ */

  --main-gradient: linear-gradient(135deg, #e96688 0%, #00366d 100%);

  --white: #ffffff;
  --light-bg: #fff5f5;
  --light-gray: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --pink-soft: #fff0f1;
  --border-color: #ffe0e2;
  --shadow-sm: 0 2px 15px rgba(204, 34, 41, 0.1);
  --shadow-md: 0 5px 30px rgba(26, 46, 90, 0.12);
  --shadow-lg: 0 10px 50px rgba(26, 46, 90, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Ù„ÙˆÙ† Ø§Ù„Ø²Ø±Ø§Ø± Ø§Ù„Ø£Ø²Ø±Ù‚ Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠ */
  --btn-primary-blue: #00428e;
  --btn-hover-blue: #003572;
  /* Ø¯Ø±Ø¬Ø© Ø£ØºÙ…Ù‚ Ù‚Ù„ÙŠÙ„Ø§Ù‹ Ø¹Ù†Ø¯ Ø§Ù„ØªÙ…Ø±ÙŠØ± */

  /* Ù„ÙˆÙ† Ø§Ù„Ø²Ø±Ø§Ø± Ø§Ù„Ø£Ø­Ù…Ø± */
  --btn-secondary-red: #e60012;
  --btn-hover-red: #c4000f;
  /* Ø¯Ø±Ø¬Ø© Ø£ØºÙ…Ù‚ Ù‚Ù„ÙŠÙ„Ø§Ù‹ Ø¹Ù†Ø¯ Ø§Ù„ØªÙ…Ø±ÙŠØ± */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", "Tajawal", sans-serif;
  direction: rtl;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background-color: transparent;
  color: var(--navy);
  padding: 8px 0;
  font-size: .82rem;
  position: fixed;
  top: 15px;
  z-index: 1001111;
  width: 100%;
  transition: var(--transition);
  /* margin: 0 12px 0 50px; */
}

.top-bar-scrolled {
  top: 0;
  background-color: #fff;
  padding-bottom: 0;
}

@media (max-width:991.9px) {
  .top-bar {
    position: absolute;
    top: 0;
  }
}


.top-bar a {
  /* color: rgba(255, 255, 255, .85); */
  color: var(--navy);
}

.top-bar a:hover {
  color: var(--red-light);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-info .item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: var(--transition);
}



.top-bar-info .item:hover {
  color: var(--red);
}

.top-bar-info .item i {
  color: var(--red);
  /* color: var(--navy); */

  font-size: 12px;
}

.lang-btn {
  background: rgba(255, 255, 255, .15);
  /* border: 1px solid rgba(255, 255, 255, .3); */
  border: 1px solid #6d6c6c73;
  /* color: white; */
  color: var(--navy);

  padding: 3px 12px;
  border-radius: 20px;
  font-size: .78rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Cairo", sans-serif;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, .1);
  border-color: var(--red-light);
  color: var(--red-dark);
}

.lang-btn:hover i {
  color: var(--red-dark);
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  background: transparent;
  padding: 18px 0;
  position: fixed;
  top: 42.7px;
  /* top: 60px; */
  width: 100%;
  z-index: 999999999;
  will-change: background, box-shadow, padding, top;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease, top .4s ease;
}

.navbar.scrolled {
  background: var(--white) !important;
  box-shadow: 0 4px 30px rgba(26, 46, 90, .13);
  padding: 10px 0;
  /* top: 34.7px; */
  top: 0 !important;
}

@media (max-width:991.9px) {

  .navbar {
    top: 30px;
  }

  .navbar.scrolled {
    top: 0;
  }
}

.navbar-brand {
  margin-right: 0 !important;
}

.navbar-brand img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--navy-light) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  margin: 0 1px !important;

}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--navy) !important;
  margin: 2px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, .12);
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--red) !important;
  background: var(--pink-soft);
}


/* Underline animation for ALL nav links including dropdown toggle */
@media (min-width: 992px) {
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 14px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width .3s ease;
    border-radius: 2px;
    transform-origin: right;
  }


  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: calc(100% - 28px);
  }
}

/* Bootstrap dropdown caret â€” hidden */
.dropdown-toggle::after {
  display: none !important;
}

@media (min-width: 992px) {

  /* Underline on dropdown-toggle hover */
  .navbar-nav .dropdown-toggle {
    position: relative;
  }

  .navbar-nav .dropdown-toggle::before {
    content: "";
    position: absolute;
    bottom: 1px;
    right: 14px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
    border-radius: 2px;
  }

  .navbar-nav .nav-item.dropdown:hover .dropdown-toggle::before {
    width: calc(100% - 28px);
  }
}

/* =============================================
   QUOTE BUTTON â€” redesigned
============================================= */
.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white !important;
  padding: 9px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: .88rem;
  font-family: "Cairo", sans-serif;
  border: 2px solid var(--red);
  box-shadow: 0 4px 18px rgba(204, 34, 41, .35);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Shine sweep on hover */
.btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}

.btn-quote:hover::before {
  left: 130%;
}

.btn-quote:hover {
  background: transparent !important;
  color: var(--red) !important;
  border-color: var(--red);
  box-shadow: 0 6px 24px rgba(204, 34, 41, .4);
  transform: translateY(-2px);
}

.btn-quote-icon {
  display: flex;
  align-items: center;
}

.btn-quote-text {
  display: inline;
}

/* =============================================
   DROPDOWN
============================================= */
.navbar-nav .dropdown-menu {
  border: 1px solid var(--border-color);
  /* border-radius: var(--radius-sm); */
  box-shadow: 0 10px 40px rgba(26, 46, 90, .15);
  padding: 8px 0;
  min-width: 210px;
  animation: dropdownFade .2s ease forwards;

}


a.nav-link.dropdown-toggle {
  gap: 4px;
}

@media (max-width: 991.9px) {
  a.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    position: absolute;
    top: 140%;
    right: 50%;
    transform: translateX(50%);
    left: auto;
  }
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateX(50%) translateY(-8px);
  }

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

.dropdown-item {
  padding: 9px 18px;
  color: var(--navy-lighter);
  font-size: .88rem;
  font-weight: 600;
  font-family: "Cairo", sans-serif;
  transition: var(--transition);
}

.dropdown-item:active,
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--pink-soft);
  color: var(--red) !important;
}

/* Toggler */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  padding: 6px 10px;
}

/* .navbar.scrolled .navbar-toggler {
  border-color: var(--red);
} */

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 7px;
  background-image: none !important;
}


/* =============================================
   MOBILE NAVBAR
============================================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(26, 46, 90, .15);
    margin-top: 12px;
    padding: 12px 8px;
    border: 1px solid var(--border-color);
  }

  .navbar-nav .nav-link {
    color: var(--navy) !important;
    margin: 5px 0;

  }

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

  .navbar-nav .nav-link::after {
    display: none !important;
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    right: auto !important;
    left: auto !important;
    box-shadow: none;
    border: none;
    border-right: 3px solid var(--red);
    margin-right: 16px;
    margin-top: 4px;
    padding: 4px 0;
    background: var(--pink-soft);
    /* border-radius: 0 var(--radius-sm) var(--radius-sm) 0; */
    border-radius: 3px;
    animation: none;
  }

  .navbar-collapse .d-flex {
    margin-top: 8px;
    padding: 0 8px;
  }

  .btn-quote {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  background-image: url("../images/hero.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:991.9px) {
  .hero-section {
    background-size: cover !important;
    background-position: center !important;
  }
}


.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(255, 240, 241, 0.7) 0%, rgba(255, 248, 248, 0.6) 40%, rgba(240, 244, 255, .7) 100%); */
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26, 46, 90, .06), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-center-col {
  padding: 0 20px;
  position: relative;
  z-index: 1;
  /* margin-bottom: 95px; */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: .82rem;
  color: var(--navy);
  margin-bottom: 20px;
  /* margin-top: 40px; */
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.3);
    opacity: .7
  }
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 18px;
}

.hero-title .highlight {
  color: var(--red);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(204, 34, 41, .35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(204, 34, 41, .45);
  color: white;
}

.btn-outline-custom {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  ;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-lighter));
  color: white;
  transform: translateY(-3px);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .5;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(204, 34, 41, .12), transparent);
  top: 10%;
  right: 5%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(26, 46, 90, .08), transparent);
  bottom: 15%;
  left: 8%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* =============================================
   SECTION SHARED
============================================= */


.section-title span {
  color: var(--red);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.section-divider::after {
  background: linear-gradient(90deg, var(--red), transparent);
}

.section-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.section-divider .star {
  color: var(--red);
  font-size: 14px;
}

/* =============================================
   CATEGORIES
============================================= */
.categories-section {
  background: var(--white);
  padding: 70px 0;
}

.category-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  padding: 25px 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  border-color: var(--red);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(204, 34, 41, .18);
  background: var(--pink-soft);
}

.category-card:hover .cat-title {
  color: var(--red);
}

.cat-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.8rem;
  overflow: hidden;
}

.cat-icon-wrapper img {
  object-fit: cover;
}

.category-card:hover .cat-icon-wrapper {
  transform: scale(1.12) rotate(-4deg);
}

.category-card .cat-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  transition: var(--transition);
}

/* =============================================
   WHY US
============================================= */
.why-us-section {
  background: linear-gradient(135deg, var(--pink-soft) 0%, #f8f9ff 100%);
  padding: 70px 0;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(204, 34, 41, .15);
  background: linear-gradient(160deg, #fff 60%, var(--pink-soft) 100%);
  border-color: var(--red);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card:hover h5 {
  color: var(--red);
}

.why-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.why-card h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
  transition: var(--transition);
}

.why-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   FEATURED PRODUCTS
============================================= */
.featured-section {
  background: var(--white);
  padding: 70px 0;
  overflow: hidden;
}

.products-scroll-container {
  position: relative;
  overflow: hidden;
}

.products-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 15px 5px 20px;
  cursor: grab;
  user-select: none;
  align-items: stretch;
}

.products-track:active {
  cursor: grabbing;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 calc((100% - 5*20px)/6);
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--red);
  box-shadow: 0 15px 40px rgba(204, 34, 41, .15);
}

.product-card-img {
  height: 160px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

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

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

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 1;
}

.product-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h6 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-body p {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2em;
}

.btn-view-product {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  padding: 8px 12px;
  border-radius: 25px;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: "Cairo", sans-serif;
  margin-top: auto;
}

.btn-view-product:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 34, 41, .3);
}

/* =============================================
   CTA SECTION â€” REDESIGNED
============================================= */
.cta-section {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  margin: 0 auto 60px;
}

@media (min-width: 992px) {
  .cta-section {
    background: #fff !important;
    padding: 40px 30px 70px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* width: 80%; */
    margin: 0 auto 60px;
    border-radius: 30px;
    border: 2px solid var(--border-color);
  }
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(204, 34, 41, .1), rgba(204, 34, 41, .05) 60%, transparent 80%);
  border-radius: 50%;
  z-index: 0;
}

.cta-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .7;
}

/* Animated blobs */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: .45;
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 34, 41, .55), transparent 70%);
  top: -180px;
  right: -120px;
  animation: blobDrift 8s ease-in-out infinite;
}

.cta-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(46, 80, 159, .7), transparent 70%);
  bottom: -120px;
  left: -80px;
  animation: blobDrift 10s ease-in-out infinite reverse;
}

.cta-blob-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(204, 34, 41, .3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobPulse 5s ease-in-out infinite;
}

@keyframes blobDrift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 25px) scale(.96);
  }
}

@keyframes blobPulse {

  0%,
  100% {
    opacity: .3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: .6;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* Top: globe + headline side by side on lg, stacked on mobile */
.cta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 55px;
  flex-wrap: wrap;
}

/* Globe */
.globe-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.globe-img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  animation: globeSpin 14s linear infinite;
  filter: drop-shadow(0 0 20px rgba(204, 34, 41, .5)) drop-shadow(0 10px 30px rgba(0, 0, 0, .4));
  position: relative;
  z-index: 2;
}

@keyframes globeSpin {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

/* Orbital rings around globe */
.globe-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(204, 34, 41, .15);
  inset: 0;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
  inset: -15px;
  animation-delay: 0s;
}

.ring-2 {
  inset: -30px;
  animation-delay: .6s;
  border-color: rgba(204, 34, 41, .05);
}

.ring-3 {
  inset: -50px;
  animation-delay: 1.2s;
  border-color: rgba(204, 34, 41, .1);
}

@keyframes ringPulse {

  0%,
  100% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* Headline beside globe */
.cta-headline {
  text-align: right;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--navy-light);
  color: var(--navy-lighter);
  padding: 5px 16px;
  border-radius: 25px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy-light);
  line-height: 1.3;
  margin-bottom: 22px;
}

.cta-title span {
  color: var(--navy-lighter);
}

.cta-desc {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* Stats strip */


/* Action buttons */
.cta-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 15px 36px;
  border-radius: 35px;
  font-weight: 800;
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  border: 2px solid transparent;
  box-shadow: 0 8px 30px rgba(26, 46, 90, .2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}

.btn-cta-primary:hover::before {
  left: 130%;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26, 46, 90, .3);
  color: white;
}

.btn-arrow {
  transition: transform .3s ease;
}

.btn-cta-primary:hover .btn-arrow {
  transform: translateX(-5px);
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  color: white;
  padding: 15px 36px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Cairo", sans-serif;
  border: 2px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
  color: white;
  transform: translateY(-3px);
}

.btn-cta-ghost .fa-whatsapp {
  font-size: 1.2rem;
  color: #25d366;
}

@media (max-width:991.9px) {
  .parent-box {
    padding: 60px 0;
  }
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  padding: 55px 0 0;
  position: relative;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-bg img {
  object-fit: fill;
  height: 100%;
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 20px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  color: white;
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-right: 5px;
}

.footer-links a::before {
  content: "â†";
  font-size: .7rem;
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
}

.footer-contact-item .contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f8b4b7;
  font-size: .9rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .65);
}

.footer-contact-item a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding: 18px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  position: relative;
}

.footer-bottom a:hover {
  color: white;
}

/* =============================================
   ANIMATIONS
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 50px;
    /* min-height: auto; */
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .product-card {
    flex: 0 0 calc((100% - 2*20px)/3);
    min-width: 180px;
  }

  .cta-top {
    gap: 30px;
  }

  .cta-headline {
    text-align: center;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-badge {
    margin: 0 auto 14px;
  }

  .cta-actions {
    justify-content: center
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 55px 0 40px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }

  .product-card {
    flex: 0 0 calc((100% - 20px)/2);
    min-width: 160px;
  }

  .cta-stats {
    gap: 10px;
  }

  .cta-stat-divider {
    display: none;
  }

  .cta-stat {
    min-width: 90px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .btn-cta-primary,
  .btn-cta-ghost {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 50px 0 35px;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .product-card {
    flex: 0 0 85%;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .globe-img {
    width: 120px;
    height: 120px;
  }

  .globe-wrapper {
    width: 150px;
    height: 150px;
  }
}

/* Floating Contact  */

.float-contact-stack {
  position: fixed;
  bottom: 32px;
  left: 18px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center
}

.float-phone-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-dark);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  box-shadow: 0 4px 20px var(--red-light);
  transition: var(--transition);
  text-decoration: none;
  animation: floatPhonePulse 3s ease-in-out infinite
}

.float-phone-btn:hover {
  transform: scale(1.1);
  color: #fff !important
}

.float-phone-btn i {
  animation: ringShake 3.2s ease-in-out infinite
}

@keyframes ringShake {

  0%,
  90%,
  100% {
    transform: rotate(0)
  }

  92% {
    transform: rotate(-18deg)
  }

  95% {
    transform: rotate(18deg)
  }

  97% {
    transform: rotate(-10deg)
  }
}

@keyframes floatPhonePulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(204, 34, 41, .11)
  }

  50% {
    box-shadow: 0 4px 30px rgba(204, 34, 41, .11), 0 0 0 8px rgba(204, 34, 41, .11)
  }
}

.float-phone-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 26, 46, .92);
  color: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition)
}

.float-phone-btn:hover .float-phone-tooltip {
  opacity: 1
}

.whatsapp-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .42);
  transition: var(--transition);
  animation: waPulse 2.7s ease-in-out infinite;
  text-decoration: none
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  color: #fff !important
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .42)
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .11)
  }
}

.wa-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 26, 46, .92);
  color: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition)
}

.whatsapp-btn:hover .wa-tooltip {
  opacity: 1
}

@media (max-width:575.98px) {

  .float-phone-tooltip,
  .wa-tooltip {
    display: none
  }
}

/* Floating Contact  */

/* Contact Page */

.NewPage .navbar {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  padding: 0 0 10px 0;
  position: fixed;
  top: 37px;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 2px 20px rgba(26, 46, 90, .1);
  transition: box-shadow .4s ease, top .4s ease;
}

.NewPage .top-bar {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  color: var(--navy);
  padding: 8px 0;
  font-size: .82rem;
  position: fixed;
  top: 0;
  z-index: 10010;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: var(--transition);
}

.NewPage .top-bar {
  top: 0;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 60%, var(--red) 100%);
  padding: 160px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: 100px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(220, 38, 38, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(220, 38, 38, 0.1) 0%, transparent 50%); */
  z-index: 0;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

.page-hero img.hero-banner-img {
  display: none;
}

.page-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero-shapes .ph-shape-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  animation: phPulse 6s ease-in-out infinite;
}

.page-hero-shapes .ph-shape-2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  animation: phPulse 8s ease-in-out infinite reverse;
}

.page-hero-shapes .ph-shape-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero-shapes .ph-shape-4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

@keyframes phPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

.page-hero-icons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-hero-icon {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.06;
  animation: floatIcon 10s ease-in-out infinite;
}

.page-hero-icon:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.page-hero-icon:nth-child(2) {
  top: 30%;
  right: 10%;
  animation-delay: -2s;
  font-size: 1.8rem;
}

.page-hero-icon:nth-child(3) {
  top: 65%;
  left: 15%;
  animation-delay: -4s;
}

.page-hero-icon:nth-child(4) {
  top: 70%;
  right: 8%;
  animation-delay: -6s;
  font-size: 1.2rem;
}

.page-hero-icon:nth-child(5) {
  top: 20%;
  left: 40%;
  animation-delay: -3s;
  font-size: 1rem;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-15px) rotate(5deg);
  }

  66% {
    transform: translateY(8px) rotate(-5deg);
  }
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}

.page-hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin: 20px auto 0;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.page-hero-badge .ph-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.page-hero .breadcrumb {
  justify-content: center;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
  font-size: .9rem;
}

.page-hero .breadcrumb-item.active {
  color: #fff;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .5);
  float: none !important;
  margin: 0 5px;
  padding-right: 0 !important;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
}

/* Welcome text */
.contact-welcome {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.contact-welcome::after {
  content: 'ðŸ¤';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: .1;
}

.contact-welcome h3 {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--red-light);
  margin-bottom: 12px;
}

.contact-welcome p {
  opacity: .9;
  line-height: 1.9;
  font-size: .98rem;
  margin: 0;
}

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 54, 109, 0.1);
  padding: 48px 40px;
}

.contact-form-card .form-label {
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: 6px;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Cairo', sans-serif;
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--light-gray);
  transition: var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(233, 102, 136, .15);
  background: #fff;
}

.contact-form-card textarea {
  resize: none;
}

.btn-submit-partner {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-submit-partner:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 102, 136, .35);
}

/* Info column */
/* .contact-info-col {
  padding-right: 10px;
} */

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-info-title span {
  color: var(--red);
}

.contact-info-desc {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: var(--transition);
}

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

.info-card .ic-icon {
  width: 46px;
  height: 46px;
  background: var(--pink-soft);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card .ic-body h6 {
  font-weight: 700;
  color: var(--navy);
  font-size: .88rem;
  margin-bottom: 3px;
}

.info-card .ic-body a,
.info-card .ic-body p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0;
}

/* Social row */
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.social-row a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.social-row a:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--pink-soft);
}

.social-row a i {
  font-size: 1rem;
}

/* Success message */
.form-success {
  display: none;
  background: #d1fae5;
  border: 1.5px solid #6ee7b7;
  color: #065f46;
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
  font-size: .95rem;
}

@media (max-width: 991px) {
  .contact-form-card {
    padding: 32px 20px;
  }

  /* .contact-info-col {
    padding-right: 0;
    margin-bottom: 40px;
  } */
}

#phoneInput {
  text-align: right;
  direction: ltr;
}

/* ======= ABOUT SECTION ======= */
.about-section {
  padding: 80px 0;
}

.about-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 54, 109, 0.18);
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(233, 102, 136, 0.35);
}

/* .about-text-col {
  padding-right: 40px;
} */

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-soft);
  color: var(--red);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 18px;
}

.about-title span {
  color: var(--red);
}

.about-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-features li .feat-icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 8px;
}

/* ======= MISSION / VISION CARDS ======= */
.mv-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.mv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  /* border-top: 4px solid var(--red); */
  border: 1px solid var(--border-color);
  ;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, #fff 60%, var(--pink-soft) 100%);
  border-color: var(--red);
}

.mv-card .mv-icon {
  width: 60px;
  height: 60px;
  background: var(--pink-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 20px;
}

.mv-card h4 {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* ======= STATS ======= */
.stats-section {
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.stats-section .container {
  padding-bottom: 0;
}

.stats-inner {
  background: linear-gradient(135deg, #0d1f40 0%, #15133a 50%, #2d0a1a 100%);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stats-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 25px 25px;
  border-radius: 24px;
}

.stats-inner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
}

.stat-item {
  text-align: center;
  color: #fff;
  padding: 20px 10px;
  position: relative;
  z-index: 1;
}

.stat-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--red-light, #f87171);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrap {
  background: rgba(220, 38, 38, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--red-light, #f87171) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
  align-self: center;
}

@media (max-width: 767px) {
  .stats-inner {
    padding: 35px 20px;
    border-radius: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 14px 8px;
  }
}

@media (max-width: 991px) {
  /* .about-text-col {
    padding-right: 0;
    margin-top: 32px;
  } */

  .about-title {
    font-size: 1.6rem;
  }
}

/* ===== MAP SECTION ===== */
.map-section {
  padding: 60px 0 80px;
  background: var(--bg-light, #f8f9fc);
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-top: 30px;
}

.map-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: var(--navy, #0d2045);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.map-badge i {
  color: var(--red, #dc2626);
}

.map-wrapper iframe {
  display: block;
}

/* ===== SERVICES PAGE ===== */
.services-grid-section {
  padding: 80px 0;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  border-color: var(--red, #dc2626);
  color: inherit;
  text-decoration: none;
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d2045 0%, #1a1035 100%);
}

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

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

.service-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-soft, #fef2f2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red, #dc2626);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: var(--red, #dc2626);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}

.service-card-body h5 {
  font-weight: 800;
  color: var(--navy, #0d2045);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.service-card-body p {
  color: var(--text-muted, #64748b);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}

.service-card-arrow {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red, #dc2626);
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* SERVICE DETAIL */
.service-detail-section {
  padding: 80px 0;
}

.service-detail-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.service-detail-img-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #0d2045 0%, #1a1035 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.service-detail-content {
  padding: 0 20px;
}

.service-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft, #fef2f2);
  color: var(--red, #dc2626);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-detail-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy, #0d2045);
  margin-bottom: 16px;
}

.service-detail-title span {
  color: var(--red, #dc2626);
}

.service-detail-desc {
  color: var(--text-muted, #64748b);
  line-height: 1.9;
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--navy, #0d2045);
  font-size: 0.95rem;
}

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

.service-features-list li .sfl-icon {
  width: 24px;
  height: 24px;
  background: var(--pink-soft, #fef2f2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--red, #dc2626);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Products page existing enhancements */
.cat-grid-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
}

.cat-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
  border-color: var(--red, #dc2626);
  color: inherit;
  text-decoration: none;
}

.cat-grid-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--pink-soft, #fef2f2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.cat-grid-card:hover .cat-grid-card-img img {
  transform: scale(1.08);
}

.cat-grid-card-body {
  padding: 14px 16px 16px;
}

.cat-grid-card-body h5 {
  font-weight: 800;
  color: var(--navy, #0d2045);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.cat-grid-card-body p {
  color: var(--text-muted, #64748b);
  font-size: 0.8rem;
  margin: 0;
}

/* Product item card */
.product-item-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  height: 100%;
}

.product-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
  border-color: var(--red, #dc2626);
  color: inherit;
  text-decoration: none;
}

.product-item-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--pink-soft, #fef2f2);
}

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

.product-item-card:hover .product-item-img img {
  transform: scale(1.07);
}

.product-item-body {
  padding: 14px 16px;
}

.product-item-body h6 {
  font-weight: 700;
  color: var(--navy, #0d2045);
  font-size: 0.9rem;
  margin: 0;
}

/* Product detail view */
#viewDetail .product-detail-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

#viewDetail .product-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

#viewDetail .product-detail-content {
  padding: 0 20px;
}

#viewDetail .pd-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft, #fef2f2);
  color: var(--red, #dc2626);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

#viewDetail .pd-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--navy, #0d2045);
  margin-bottom: 14px;
}

#viewDetail .pd-desc {
  color: var(--text-muted, #64748b);
  line-height: 1.9;
  font-size: 0.97rem;
  margin-bottom: 28px;
}

#viewDetail .btn-ask-offers {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red, #dc2626);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

#viewDetail .btn-ask-offers:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Suggested products swiper */
.suggested-section {
  padding: 40px 0 20px;
  overflow: hidden;
}

.suggested-section h4 {
  font-weight: 800;
  color: var(--navy, #0d2045);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.suggested-swiper .swiper-slide {
  width: 200px !important;
}

.suggested-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.suggested-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--red, #dc2626);
  text-decoration: none;
  color: inherit;
}

.suggested-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.suggested-card .sc-body {
  padding: 10px 12px;
}

.suggested-card .sc-body h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy, #0d2045);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Products page views */
#viewCategories,
#viewProducts,
#viewDetail {
  display: none;
}

#viewCategories.active,
#viewProducts.active,
#viewDetail.active {
  display: block;
}

.products-page-section {
  padding: 60px 0 80px;
}

.cat-section-title {
  font-weight: 800;
  color: var(--navy, #0d2045);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy, #0d2045);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: #f1f5f9;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: all 0.2s ease;
  cursor: pointer;
}

.back-btn:hover {
  background: var(--navy, #0d2045);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   ABOUT PAGE â€” ab-* classes
   ============================================================ */

.ab-main-section {
  padding: 90px 0 70px;
  background: #fff;
  overflow: hidden;
}

/* Image block */
.ab-img-block {
  position: relative;
}

.ab-img-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 54, 109, 0.18);
  position: relative;
}

.ab-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ab-img-frame:hover img {
  transform: scale(1.04);
}

/* Gradient overlay on image */
.ab-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 36, 109, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative border accent */
.ab-img-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--red);
  border-radius: 28px;
  z-index: -1;
  opacity: 0.4;
}

/* Floating badge */
.ab-float-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 36, 109, 0.35);
  z-index: 2;
}

.ab-float-badge i {
  color: var(--white);
  font-size: 1rem;
}

/* Floating stat pill */
.ab-float-stat {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(233, 102, 136, 0.4);
  z-index: 2;
  border: 3px solid #fff;
}

.ab-fs-num {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.ab-fs-label {
  font-size: 0.58rem;
  font-weight: 600;
  opacity: 0.9;
  text-align: center;
  line-height: 1.2;
}

/* Text block */
.ab-text-block {
  padding-right: 20px;
}

.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-soft);
  color: var(--red);
  border: 1px solid var(--border-color);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.ab-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px;
}

.ab-title span {
  color: var(--red);
}

.ab-divider-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 4px;
  margin-bottom: 22px;
}

.ab-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Feature grid 2x2 */
.ab-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 32px;
}

.ab-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--light-gray);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
}

.ab-feat-item:hover {
  background: var(--pink-soft);
  border-color: var(--border-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(233, 102, 136, 0.12);
}

.ab-feat-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(233, 102, 136, 0.3);
}

.ab-feat-item h6 {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.ab-feat-item p {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
}

/* CTA button */
.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(0, 54, 109, 0.3);
  position: relative;
  overflow: hidden;
}

.ab-cta-btn::before {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ab-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 54, 109, 0.35);
  color: #fff !important;
  text-decoration: none;
}

.ab-cta-btn:hover::before {
  opacity: 1;
}

.ab-cta-btn i,
.ab-cta-btn span {
  position: relative;
  z-index: 1;
}

.ab-cta-arrow {
  transition: transform 0.3s ease;
}

.ab-cta-btn:hover .ab-cta-arrow {
  transform: translateX(-5px);
}

/* WHY US section */
.ab-why-section {
  padding: 80px 0;
  background: var(--light-gray);
  position: relative;
}

.ab-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red), var(--navy));
}

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

.ab-why-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ab-why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 20px;
}

.ab-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 54, 109, 0.18);
}

.ab-why-card:hover::before {
  opacity: 1;
}

.ab-why-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 20px;
  transition: color 0.35s ease;
  font-family: 'Cairo', sans-serif;
}

.ab-why-card:hover .ab-why-num {
  color: rgba(255, 255, 255, 0.07);
}

.ab-why-icon {
  width: 54px;
  height: 54px;
  background: var(--pink-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: all 0.35s ease;
}

.ab-why-card:hover .ab-why-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ab-why-card h5 {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.97rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.ab-why-card:hover h5 {
  color: #fff;
}

.ab-why-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.ab-why-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive about */
@media (max-width: 991px) {
  .ab-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-float-badge {
    right: 10px;
  }

  .ab-float-stat {
    left: 10px;
  }

  .ab-text-block {
    padding-right: 0;
  }

  .ab-title {
    font-size: 1.7rem;
  }
}

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

  .ab-features-grid {
    grid-template-columns: 1fr;
  }

  .ab-img-frame img {
    height: 300px;
  }

  .ab-float-badge {
    display: none;
  }

  .ab-float-stat {
    display: none;
  }
}


/* ============================================================
   CONTACT PAGE â€” ct-* classes
   ============================================================ */

/* Intro Strip */
.ct-intro-strip {
  padding: 0;
  margin-top: -1px;
  background: var(--navy);
}

.ct-intro-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.ct-intro-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  flex: 1;
  min-width: 200px;
}

.ct-intro-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--red-light);
  flex-shrink: 0;
}

.ct-intro-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-intro-body span:first-child {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-intro-body span:last-child,
.ct-intro-body a {
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.ct-intro-body a:hover {
  color: var(--red-light);
}

.ct-intro-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ct-intro-divider {
    display: none;
  }

  .ct-intro-item {
    padding: 14px 20px;
    min-width: 160px;
  }
}

/* Main section */
.ct-main-section {
  padding: 80px 0 0;
  background: #f6f8fc;
  position: relative;
}

.ct-main-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(180deg, #f0f4fa 0%, #f6f8fc 100%);
  pointer-events: none;
}

/* Info card */
.ct-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0, 54, 109, 0.1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 120px;
}

.ct-info-header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ct-info-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lighter));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0, 54, 109, 0.3);
}

.ct-info-header h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.ct-info-header h3 span {
  color: var(--red);
}

.ct-info-header p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* Info links */
.ct-info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.ct-info-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--light-gray);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.ct-info-link:hover {
  background: var(--pink-soft);
  border-color: var(--border-color);
  transform: translateX(-4px);
  text-decoration: none;
  color: inherit;
}

.ct-info-link--static:hover {
  transform: none;
  cursor: default;
}

.ct-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: #ffe5e7;
  color: var(--red);
}

.ct-link-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.ct-link-body small {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ct-link-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.ct-link-ext {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ct-info-link:hover .ct-link-ext {
  opacity: 1;
}

/* Social buttons */
.ct-social-row {
  display: flex;
  gap: 10px;
}

.ct-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: #ffe5e7;
  color: var(--red);
}

.ct-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 102, 102, 0.2);
  color: var(--red-dark);
  text-decoration: none;
}

/* .ct-social-btn--wa {
  background: #25d366;
}

.ct-social-btn--fb {
  background: #1877f2;
}

.ct-social-btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ct-social-btn--li {
  background: #0077b5;
} */

/* Form card */
.ct-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(0, 54, 109, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ct-form-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ct-form-header h4 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.ct-form-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Fields */
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-field label {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
}

.ct-field label i {
  color: var(--red);
  font-size: 0.8rem;
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #f8fafc;
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(233, 102, 136, 0.12);
}

.ct-field textarea {
  resize: none;
}

/* Submit button */
.ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.ct-submit-btn::before {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ct-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 54, 109, 0.3);
}

.ct-submit-btn:hover::before {
  opacity: 1;
}

.ct-submit-btn i {
  position: relative;
  z-index: 1;
}

.ct-submit-btn span,
.ct-submit-btn {
  position: relative;
  z-index: 1;
}

/* Success message */
.ct-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 1.5px solid #6ee7b7;
  color: #065f46;
  border-radius: 14px;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

.ct-success i {
  font-size: 1.3rem;
}


/* ============================================================
   MAP â€” ct-map-* classes (enhanced)
   ============================================================ */

.ct-map-section {
  padding: 70px 0 90px;
  background: var(--light-gray);
}

.ct-map-header {
  text-align: center;
  margin-bottom: 36px;
}

.ct-map-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 12px;
}

.ct-map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 54, 109, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.07);
}

/* Pin card overlay */
.ct-map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.ct-map-pin-card {
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.ct-map-pin-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(233, 102, 136, 0.4);
}

.ct-map-pin-body {
  display: flex;
  flex-direction: column;
}

.ct-map-pin-body strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.ct-map-pin-body span {
  font-size: 0.76rem;
  opacity: 0.7;
}

/* Bottom info bar */
.ct-map-infobar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--navy);
  padding: 18px 24px;
}

.ct-map-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
}

@media (max-width:991.9px) {
  .ct-map-info-item:nth-child(2) {
    border-left: none !important;
  }
}

@media (max-width:767.9px) {
  .ct-map-info-item {
    border-left: none !important;
  }
}

.ct-map-info-item:last-child {
  border-left: none;
}

.ct-map-info-item i {
  color: var(--red-light);
  font-size: 0.9rem;
}

.ct-map-wrapper iframe {
  display: block;
  width: 100%;
}

/* Responsive contact */
@media (max-width: 991px) {
  .ct-form-card {
    padding: 32px 24px;
  }

  .ct-info-card {
    position: static;
    margin-bottom: 16px;
  }
}

@media (max-width: 575px) {
  .ct-map-info-item {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .ct-map-infobar {
    gap: 4px;
  }

  .ct-intro-item {
    min-width: 140px;
    padding: 12px 14px;
  }

  .ct-form-card {
    padding: 24px 16px;
  }
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0 !important;
}


/* ============================================================
   PAGES CSS â€” merged from pages.css
   ============================================================ */

/* ============================================================
   CHINA TOYS â€” Pages CSS (services, products, partners, factories)
   ============================================================ */

/* =============================================
   SECTION UTILITIES
============================================= */
.section-pad {
  padding: 80px 0;
}

.section-head {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-color);
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}


/* .page-hero-header {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}

.page-hero-header--sm {
  min-height: 340px;
}

.page-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,54,109,0.82) 0%, rgba(233,102,136,0.5) 100%);
  z-index: 1;
}

.page-hero-overlay--navy {
  background: linear-gradient(135deg, rgba(0,54,109,0.9) 0%, rgba(0,54,109,0.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}

.page-hero-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.page-hero-title span {
  color: var(--red-light);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.page-breadcrumb {
  margin: 0;
}

.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
}

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

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
} */

/* =============================================
   CTA STRIP
============================================= */
.cta-strip {
  background: var(--main-gradient);
  padding: 50px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip h3 {
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.cta-strip .btn-quote {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-strip .btn-quote:hover {
  background: #fff !important;
  color: var(--red) !important;
  border-color: #fff;
}

/* =============================================
   SERVICES CARDS
============================================= */
.srv-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
  text-decoration: none;
  color: inherit;
}

.srv-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}

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

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

.srv-card-icon-wrap {
  position: absolute;
  bottom: -18px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(233, 102, 136, 0.4);
  border: 3px solid #fff;
  z-index: 2;
}

.srv-card-body {
  padding: 28px 20px 20px;
}

.srv-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.srv-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.srv-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
  transition: gap var(--transition);
}

.srv-card:hover .srv-card-link {
  gap: 10px;
}

/* =============================================
   SERVICE DETAIL PAGE
============================================= */
.srv-detail-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.srv-detail-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--light-gray);
}

.srv-detail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srv-detail-icon-badge {
  position: absolute;
  bottom: -22px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(233, 102, 136, 0.4);
  border: 4px solid #fff;
  z-index: 2;
}

.srv-detail-card-body {
  padding: 36px 28px 28px;
}

.srv-detail-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}

.srv-detail-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.srv-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.srv-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.srv-feature-item i {
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Service Sidebar */
.srv-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  color: #fff;
}

.srv-sidebar-cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  color: var(--red-light);
}

.srv-sidebar-cta h5 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
}

.srv-sidebar-cta p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}

.srv-sidebar-list {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.srv-sidebar-list-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.srv-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--navy-lighter);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 4px;
}

.srv-sidebar-item:hover {
  background: var(--pink-soft);
  color: var(--red);
  text-decoration: none;
}

.srv-sidebar-item i {
  width: 18px;
  text-align: center;
  color: var(--red);
  font-size: 0.85rem;
}

/* =============================================
   PRODUCTS PAGE
============================================= */
#viewCategories,
#viewProducts,
#viewDetail {
  display: block;
}

/* Category Grid Card */
.cat-grid-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.cat-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-light);
  color: inherit;
  text-decoration: none;
}

.cat-grid-card-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 3px solid var(--border-color);
  transition: border-color var(--transition);
}

.cat-grid-card:hover .cat-grid-card-img {
  border-color: var(--red-light);
}

.cat-grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.cat-grid-card-body h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.cat-grid-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Product Item Card */
.product-item-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.product-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-light);
  text-decoration: none;
  color: inherit;
}

.product-item-img {
  height: 160px;
  overflow: hidden;
  background: var(--light-gray);
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.product-item-card:hover .product-item-img img {
  transform: scale(1.07);
}

.product-item-body {
  padding: 12px 14px;
}

.product-item-body h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

/* Products Back Link */
.products-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-lighter);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 16px;
  background: var(--light-gray);
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
  margin-bottom: 20px;
}

.products-back-link:hover {
  background: var(--pink-soft);
  color: var(--red);
  text-decoration: none;
}

/* Product Detail */
.prod-detail-img-wrap {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 1.5px solid var(--border-color);
}

.prod-detail-img {
  max-height: 320px;
  object-fit: contain;
  width: 100%;
}

.prod-detail-info {
  padding: 10px 0;
}

.prod-detail-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.prod-detail-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.btn-ask-offer {
  display: inline-flex;
  gap: 10px;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 14px;
}

/* Suggested Products */
.suggested-section {
  padding-top: 40px;
  border-top: 1.5px solid var(--border-color);
}

.suggested-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}

.suggested-swiper {
  overflow: visible;
}

.suggested-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  width: 200px;
}

.suggested-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-light);
  text-decoration: none;
  color: inherit;
}

.suggested-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  padding: 10px;
  background: var(--light-gray);
}

.sc-body {
  padding: 10px 12px;
}

.sc-body h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   PARTNERS PAGE
============================================= */
.partners-welcome-section {
  background: var(--light-gray);
}

.partners-welcome-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.partners-welcome-icon {
  width: 60px;
  height: 60px;
  background: var(--pink-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.6rem;
  margin-bottom: 20px;
  border: 1.5px solid var(--border-color);
}

.partners-welcome-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 16px;
}

.partners-welcome-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.partners-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1.5px solid var(--border-color);
}

.partners-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.partners-benefit-item i {
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.partners-form-section {
  background: #fff;
}

.partners-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 575px) {
  .partners-form-card {
    padding: 28px 18px;
  }

  .partners-benefits {
    grid-template-columns: 1fr;
  }

  .srv-features-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   FACTORIES PAGE
============================================= */
.factories-section {
  background: var(--light-gray);
}

.factory-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  transition: all var(--transition);
}

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

.factory-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
}

.factory-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.factory-card:hover .factory-card-img img {
  transform: scale(1.05);
}

.factory-card-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.factory-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.factory-card-body {
  padding: 20px 22px 22px;
}

.factory-flag {
  margin-bottom: 10px;
}

.factory-flag img {
  height: 20px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.factory-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.factory-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.factory-location i {
  color: var(--red);
  font-size: 0.75rem;
}

.factory-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.factory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.factory-tag {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

/* Factories Stats Bar */
.factories-stats-bar {
  background: var(--navy);
  padding: 60px 0;
}

.factories-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.factories-stat-num {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 8px;
}

.factories-stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
============================================= */
@media (max-width: 991px) {
  .section-pad {
    padding: 60px 0;
  }

  .page-hero-header {
    min-height: 360px;
    padding-top: 100px;
  }

  .srv-sidebar {
    position: static;
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 50px 0;
  }

  .page-hero-header {
    min-height: 300px;
  }

  .cta-strip-inner {
    text-align: center;
    justify-content: center;
  }

  .partners-form-card {
    padding: 28px 18px;
  }
}

@media (max-width: 575px) {
  .page-hero-header {
    min-height: 260px;
    padding-top: 90px;
    padding-bottom: 40px;
  }
}

/* =============================================
   NAVBAR â€” Split dropdown (text link + arrow btn)
============================================= */
.dropdown-label-text {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  padding: 0;
}

.products-text-link {
  color: inherit;
  text-decoration: none;
  /* padding: 8px 4px 8px 0; */
  font-size: inherit;
  font-weight: inherit;
  transition: color var(--transition);
}

.products-text-link:hover,
.products-text-link.active {
  color: var(--red);
}

.dropdown-arrow-btn {
  background: none;
  border: none;
  padding: 6px 4px;
  cursor: pointer;
  color: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), transform var(--transition);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--red);


}

.dropdown-arrow-btn:hover {
  color: var(--red);
  background-color: var(--red-dark);
}

.dropdown-arrow-btn i {
  color: #fff;
  font-size: 8px !important;
}

.nav-item.dropdown .dropdown-menu.show~* .dropdown-arrow-btn i,
.dropdown-arrow-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.nav-link.dropdown-label-text.active .products-text-link {
  color: var(--red);
}

@media (max-width: 991px) {
  .dropdown-label-text {
    padding: 6px 0;
  }

  .products-text-link {
    flex: 1;
    /* padding: 4px 0; */
  }

  .navbar-nav .nav-link {
    margin: 1px !important;
  }
}

@media (max-width:1199.9px) {
  .navbar-nav .nav-link {
    padding: 10px 6px !important;
    margin: 1px !important;
    font-size: 14px;
  }
}
