/* =========================================
           ROOT VARIABLES & GLOBAL STYLES
           ========================================= */
:root {
  --sso-blue: #254184;
  --sso-orange: #f27f22;
  --sso-yellow: #fdc010;
  --sso-gradient: linear-gradient(135deg, #fdc010 0%, #f27f22 100%);

  --sso-bg-light: #f8f9fa;
  --sso-bg-white: #ffffff;
  --sso-text-dark: #333333;
  --sso-text-muted: #6c757d;

  --sso-font-main: "Poppins", sans-serif;
}

body {
  font-family: var(--sso-font-main);
  background-color: var(--sso-bg-white);
  color: var(--sso-text-dark);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* =========================================
           HEADER / NAVBAR SECTION STYLES
           ========================================= */
.sso-header-navbar {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* padding: 8px 0; */
  top: 0;
  width: 100%;
  left: 0;
  border-radius: 0;
}

.sso-header-navbar.scrolled {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 15px 40px rgba(37, 65, 132, 0.15);
  top: 20px;
  width: 92%;
  left: 4%;
  border-radius: 50px;
  border-bottom: none;
}

.sso-brand-logo {
  display: flex;
  align-items: center;
}

.sso-brand-logo img {
  height: 85px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
  object-fit: contain;
}

.sso-header-navbar.scrolled .sso-brand-logo img {
  height: 65px;
}

.sso-brand-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(242, 127, 34, 0.2));
}

.sso-nav-menu-item {
  font-weight: 600;
  color: var(--sso-blue) !important;
  margin: 0 15px;
  padding: 8px 0;
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.sso-nav-menu-item:hover {
  transform: translateY(-2px);
  background: var(--sso-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sso-nav-menu-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sso-gradient);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(242, 127, 34, 0.4);
}

.sso-nav-menu-item:hover::after {
  width: 100%;
}

.sso-contact-btn {
  background: var(--sso-gradient);
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(242, 127, 34, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.95rem;
}

.sso-contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.6s ease;
  z-index: -1;
}

.sso-contact-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(242, 127, 34, 0.4);
}

.sso-contact-btn:hover::before {
  left: 100%;
}

/* =========================================
           HERO SLIDER SECTION STYLES
           ========================================= */
.sso-hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--sso-blue);
}

.sso-carousel-inner,
.sso-carousel-item {
  height: 100%;
}

.sso-carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sso-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  z-index: 1;
}

.sso-slide-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  color: #fff;
}

.sso-hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sso-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 20px;
  border-radius: 30px;
  border-left: 3px solid var(--sso-yellow);
  backdrop-filter: blur(5px);
}

.sso-hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.sso-hero-title span {
  background: var(--sso-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
}

.sso-hero-description {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 550px;
  margin-bottom: 35px;
  line-height: 1.7;
  opacity: 0.95;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.sso-hero-actions .btn-explore {
  background: #fff;
  color: var(--sso-blue);
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-right: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sso-hero-actions .btn-explore:hover {
  background: var(--sso-yellow);
  color: var(--sso-text-dark);
  transform: scale(1.05);
}

.sso-hero-actions .btn-video {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(5px);
}

.sso-hero-actions .btn-video:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.sso-hero-actions .btn-video i {
  background: var(--sso-gradient);
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(242, 127, 34, 0.4);
}

.sso-carousel-indicators {
  bottom: 40px;
  gap: 12px;
}

.sso-carousel-indicators button {
  width: 40px !important;
  height: 5px !important;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sso-carousel-indicators button.active {
  width: 70px !important;
  background-color: var(--sso-yellow) !important;
  box-shadow: 0 0 15px rgba(253, 192, 16, 0.6);
}

/* =========================================
           ABOUT US SECTION STYLES
           ========================================= */
.sso-about-section {
  padding: 100px 0;
  background-color: var(--sso-bg-light);
  position: relative;
  overflow: hidden;
}

.sso-about-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--sso-gradient);
  opacity: 0.05;
  z-index: 0;
}

.sso-about-shape-1 {
  width: 450px;
  height: 450px;
  top: -150px;
  left: -100px;
}

.sso-about-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
}

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

.sso-about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sso-about-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.sso-about-img-wrapper:hover .sso-about-main-img {
  transform: scale(1.05);
}

.sso-about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 0px;
  background: var(--sso-bg-white);
  padding: 25px 35px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(37, 65, 132, 0.15);
  text-align: center;
  border-bottom: 5px solid var(--sso-orange);
  z-index: 2;
}

.sso-about-experience-badge h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sso-blue);
  margin: 0;
  line-height: 1;
}

.sso-about-experience-badge p {
  margin: 5px 0 0;
  font-weight: 600;
  color: var(--sso-orange);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.sso-about-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sso-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sso-about-subtitle::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--sso-gradient);
  display: inline-block;
}

.sso-about-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sso-blue);
  margin-bottom: 25px;
  line-height: 1.25;
}

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

.sso-about-text {
  font-size: 1.05rem;
  color: var(--sso-text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.sso-about-features {
  margin-bottom: 35px;
}

.sso-about-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sso-text-dark);
}

.sso-about-feature-item i {
  color: var(--sso-yellow);
  font-size: 1.4rem;
  margin-right: 15px;
  background: rgba(253, 192, 16, 0.15);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(253, 192, 16, 0.2);
}

.sso-about-btn {
  background: var(--sso-blue);
  color: #fff !important;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(37, 65, 132, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
}

.sso-about-btn:hover {
  background: var(--sso-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(242, 127, 34, 0.3);
}

/* =========================================
           PRODUCTS SECTION STYLES
           ========================================= */
.sso-prod-section {
  padding: 100px 0;
  background-color: var(--sso-bg-white);
  position: relative;
}

.sso-prod-header {
  margin-bottom: 60px;
}

.sso-prod-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sso-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.sso-prod-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--sso-blue);
  line-height: 1.2;
}

.sso-prod-title span {
  background: var(--sso-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sso-prod-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
  z-index: 1;
}

.sso-prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 65, 132, 0.12);
  border-color: rgba(242, 127, 34, 0.3);
  z-index: 10;
}

.sso-prod-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--sso-gradient);
  color: #fff;
  padding: 5px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 3;
  box-shadow: 0 4px 10px rgba(242, 127, 34, 0.3);
}

.sso-prod-img-box {
  position: relative;
  height: 250px;
  background: var(--sso-bg-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  padding: 15px;
}

.sso-prod-img-box::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--sso-gradient);
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.5s ease;
}

.sso-prod-card:hover .sso-prod-img-box::before {
  transform: scale(1.5);
  opacity: 0.15;
}

.sso-prod-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.sso-prod-card:hover .sso-prod-img {
  transform: scale(1.08) translateY(-5px);
}

.sso-prod-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sso-prod-size {
  font-size: 0.9rem;
  color: var(--sso-orange);
  font-weight: 700;
  margin-bottom: 8px;
}

.sso-prod-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sso-blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sso-prod-desc {
  font-size: 0.95rem;
  color: var(--sso-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.sso-prod-btn {
  background: transparent;
  color: var(--sso-blue);
  border: 2px solid var(--sso-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.sso-prod-card:hover .sso-prod-btn {
  background: var(--sso-blue);
  color: #fff;
  box-shadow: 0 5px 15px rgba(37, 65, 132, 0.2);
}

/* =========================================
           QUALITY SECTION STYLES
           ========================================= */
.sso-qual-section {
  padding: 100px 0;
  color: #fff;
  position: relative;
  background:
    linear-gradient(rgba(15, 30, 70, 0.85), rgba(37, 65, 132, 0.9)),
    url("../images/banner/peralox.jpg") center/cover fixed;
}

.sso-qual-header {
  margin-bottom: 60px;
}

.sso-qual-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sso-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
}

.sso-qual-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.sso-qual-title span {
  color: var(--sso-orange);
}

.sso-qual-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.sso-qual-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.sso-qual-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--sso-orange);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.sso-qual-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--sso-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(242, 127, 34, 0.3);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sso-qual-card:hover .sso-qual-icon {
  transform: rotateY(180deg);
}

.sso-qual-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.sso-qual-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
           HEALTH BENEFITS SECTION STYLES
           ========================================= */
.sso-benefits-section {
  padding: 100px 0;
  background-color: var(--sso-bg-light);
  position: relative;
  overflow: hidden;
}

.sso-benefits-header {
  margin-bottom: 60px;
  text-align: center;
}

.sso-benefits-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sso-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
}

.sso-benefits-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--sso-blue);
}

.sso-benefits-title span {
  background: var(--sso-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sso-benefit-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  border-left: 4px solid transparent;
}

.sso-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(37, 65, 132, 0.08);
  border-left-color: var(--sso-orange);
}

.sso-benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(253, 192, 16, 0.1);
  color: var(--sso-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 25px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.sso-benefit-card:hover .sso-benefit-icon {
  background: var(--sso-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 127, 34, 0.3);
  transform: scale(1.1);
}

.sso-benefit-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sso-blue);
  margin-bottom: 10px;
}

.sso-benefit-content p {
  color: var(--sso-text-muted);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.sso-benefits-center-img {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--sso-gradient);
  padding: 10px;
  box-shadow: 0 20px 50px rgba(37, 65, 132, 0.15);
  animation: floatUpDown 6s ease-in-out infinite;
}

.sso-benefits-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #fff;
  background-color: #fff;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* =========================================
           TESTIMONIALS SECTION STYLES
           ========================================= */
.sso-testimonial-section {
  padding: 100px 0;
  background-color: var(--sso-bg-white);
  position: relative;
}

.sso-testimonial-header {
  text-align: center;
  margin-bottom: 70px;
}

.sso-testimonial-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sso-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
}

.sso-testimonial-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--sso-blue);
}

.sso-testimonial-title span {
  background: var(--sso-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sso-testimonial-card {
  background: var(--sso-bg-light);
  padding: 50px 30px 30px;
  border-radius: 20px;
  position: relative;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: calc(100% - 40px);
}

.sso-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 65, 132, 0.08);
  border-color: rgba(253, 192, 16, 0.3);
}

.sso-testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  background-color: var(--sso-blue);
}

.sso-testimonial-quote {
  color: rgba(253, 192, 16, 0.3);
  font-size: 2.5rem;
  margin-bottom: 15px;
  line-height: 1;
}

.sso-testimonial-text {
  font-size: 1.05rem;
  color: var(--sso-text-muted);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
}

.sso-testimonial-author h5 {
  color: var(--sso-blue);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.sso-testimonial-stars {
  color: var(--sso-orange);
  font-size: 0.9rem;
}

/* =========================================
           FAQ SECTION STYLES (SEXY CUSTOM ACCORDION)
           ========================================= */
.sso-faq-section {
  padding: 100px 0;
  background-color: var(--sso-bg-light);
  position: relative;
  overflow: hidden;
}

.sso-faq-header {
  margin-bottom: 40px;
}

.sso-faq-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sso-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
}

.sso-faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--sso-blue);
  line-height: 1.2;
}

.sso-faq-title span {
  background: var(--sso-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Left Side Modern Image Wrapper */
.sso-faq-img-wrapper {
  position: relative;
  padding-right: 25px;
  padding-bottom: 25px;
  margin-top: 20px;
  z-index: 1;
}

.sso-faq-img-backdrop {
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 0;
  left: 25px;
  background: var(--sso-gradient);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.8;
}

.sso-faq-img-main {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Floating Badge over image */
.sso-faq-floating-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 15px 30px rgba(37, 65, 132, 0.15);
  z-index: 3;
  font-weight: 700;
  color: var(--sso-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatUpDown 4s ease-in-out infinite;
}

.sso-faq-floating-badge i {
  color: #28a745;
  font-size: 1.3rem;
}

/* Custom Accordion Cards (No Bootstrap defaults) */
.sso-faq-card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.sso-faq-card:hover {
  box-shadow: 0 15px 35px rgba(37, 65, 132, 0.1);
  border-color: rgba(242, 127, 34, 0.3);
  transform: translateY(-3px);
}

.sso-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 20px 25px;
  text-align: left;
  color: var(--sso-blue);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.sso-faq-btn:not(.collapsed) {
  color: var(--sso-orange);
  background: rgba(253, 192, 16, 0.05);
}

.sso-faq-btn:focus {
  outline: none;
}

/* Custom Animated Plus/Minus Icon */
.sso-faq-icon-wrap {
  width: 35px;
  height: 35px;
  background: var(--sso-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sso-blue);
  transition: all 0.4s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.sso-faq-btn:not(.collapsed) .sso-faq-icon-wrap {
  background: var(--sso-gradient);
  color: #fff;
}

.sso-faq-btn .fa-minus {
  display: none;
}

.sso-faq-btn:not(.collapsed) .fa-plus {
  display: none;
}

.sso-faq-btn:not(.collapsed) .fa-minus {
  display: block;
}

.sso-faq-body-text {
  padding: 0 25px 25px 25px;
  color: var(--sso-text-muted);
  line-height: 1.7;
  font-size: 1rem;
  background: rgba(253, 192, 16, 0.05);
}

/* =========================================
           ABOUT US STICKERS & PARALLAX BANNER (NEW)
           ========================================= */
.sso-about-sticker {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
  z-index: 0;
  animation: floatUpDown 6s ease-in-out infinite;
  object-fit: cover;
}

.sso-sticker-1 {
  top: -5%;
  left: -2%;
  width: 140px;
  height: 140px;
  animation-delay: 0s;
}

.sso-sticker-2 {
  bottom: -5%;
  right: -2%;
  width: 180px;
  height: 180px;
  animation-delay: 3s;
}

.sso-parallax-banner {
  min-height: 30vh;
  background:
    linear-gradient(rgba(11, 26, 61, 0.85), rgba(37, 65, 132, 0.85)),
    url("../images/banner/peralox.jpg") center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 80px 0;
  margin: 50px 0;
}

.sso-parallax-banner h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sso-parallax-banner h2 span {
  color: var(--sso-yellow);
}

.sso-parallax-banner p {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================
           FLOATING CONTACT ICONS (NEW)
           ========================================= */
.sso-floating-contacts {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sso-float-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.sso-float-icon:hover {
  transform: scale(1.15) translateY(-5px);
  color: #fff;
}

.sso-float-whatsapp {
  background: #25d366;
  animation: pulse-whatsapp 2s infinite;
}

.sso-float-call {
  background: var(--sso-blue);
}

.sso-float-email {
  background: var(--sso-orange);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* =========================================
           FOOTER SECTION STYLES
           ========================================= */
.sso-footer {
  background-color: #0b1a3d;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding-top: 120px;
  margin-top: 80px;
}

.sso-footer-cta-wrapper {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.sso-footer-cta {
  background: var(--sso-gradient);
  border-radius: 20px;
  padding: 40px 50px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(242, 127, 34, 0.3);
}

.sso-footer-cta h3 {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.sso-footer-cta p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
}

.sso-footer-cta .sso-contact-btn {
  background: #fff !important;
  color: var(--sso-orange) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 35px;
  font-size: 1.1rem;
}

.sso-footer-cta .sso-contact-btn::before {
  background: rgba(242, 127, 34, 0.1);
}

.sso-footer-main {
  padding-top: 50px;
  padding-bottom: 30px;
}

.sso-footer-logo {
  height: 65px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.sso-footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.sso-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--sso-gradient);
  border-radius: 5px;
}

.sso-footer-text {
  line-height: 1.8;
  font-size: 1rem;
}

.sso-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.sso-footer-socials a:hover {
  background: var(--sso-gradient);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(242, 127, 34, 0.4);
}

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

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

.sso-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.05rem;
}

.sso-footer-links a:hover {
  color: var(--sso-yellow);
  transform: translateX(8px);
}

.sso-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sso-footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.sso-footer-contact i {
  color: var(--sso-yellow);
  margin-right: 15px;
  margin-top: 4px;
  font-size: 1.2rem;
  background: rgba(253, 192, 16, 0.1);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.sso-footer-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 20px;
  border-radius: 30px 0 0 30px;
}

.sso-footer-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--sso-orange);
  box-shadow: none;
}

.sso-footer-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.sso-footer-form .sso-footer-btn {
  background: var(--sso-gradient);
  color: #fff;
  border: none;
  padding: 0 25px;
  border-radius: 0 30px 30px 0;
  transition: all 0.3s ease;
}

.sso-footer-form .sso-footer-btn:hover {
  opacity: 0.9;
  box-shadow: -5px 0 15px rgba(242, 127, 34, 0.3);
}

.sso-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.15);
}

.sso-footer-bottom p {
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .sso-hero-title {
    font-size: 3.2rem;
  }

  .sso-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }

  .sso-about-experience-badge {
    right: auto;
    left: 20px;
    bottom: 20px;
    padding: 15px 25px;
  }

  .sso-about-title {
    font-size: 2.4rem;
  }

  .sso-qual-title {
    font-size: 2.5rem;
  }

  .sso-benefits-title {
    font-size: 2.5rem;
  }

  .sso-benefits-center-img {
    display: none;
  }

  .sso-faq-title {
    font-size: 2.5rem;
  }

  .sso-faq-floating-badge {
    left: 10px;
    bottom: 20px;
  }

  .sso-footer-cta {
    padding: 30px;
    text-align: center;
  }

  .sso-footer-cta .text-md-end {
    text-align: center !important;
    margin-top: 20px;
  }

  .sso-header-navbar.scrolled {
    width: 96%;
    left: 2%;
    top: 10px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .sso-hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .sso-hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .sso-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }

  .sso-hero-actions .btn-explore {
    margin-right: 0;
    text-align: center;
    width: 100%;
    padding: 12px 20px;
  }

  .sso-hero-actions .btn-video {
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
  }

  .sso-carousel-indicators {
    bottom: 20px;
  }

  .sso-carousel-indicators button {
    width: 20px !important;
    height: 4px !important;
  }

  .sso-carousel-indicators button.active {
    width: 35px !important;
  }

  .sso-testimonial-title {
    font-size: 2.5rem;
  }

  .sso-faq-title {
    font-size: 2.2rem;
  }

  .sso-faq-header {
    text-align: center;
  }

  .sso-footer {
    padding-top: 180px;
    margin-top: 100px;
  }

  .sso-footer-cta-wrapper {
    top: -100px;
    padding: 0 15px;
  }

  .sso-footer-cta h3 {
    font-size: 1.8rem;
  }

  .sso-parallax-banner h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .sso-slide-content {
    margin-top: 30px;
  }

  .sso-hero-title {
    font-size: 1.8rem;
  }

  .sso-hero-subtitle {
    font-size: 0.85rem;
    padding: 4px 15px;
    margin-bottom: 10px;
  }

  .sso-hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .sso-prod-title,
  .sso-qual-title,
  .sso-benefits-title,
  .sso-testimonial-title,
  .sso-faq-title {
    font-size: 2rem;
  }

  .sso-benefit-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .sso-benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .sso-faq-floating-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .sso-floating-contacts {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .sso-float-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .sso-sticker-1 {
    width: 90px;
    height: 90px;
  }

  .sso-sticker-2 {
    width: 120px;
    height: 120px;
  }
}
