/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #cc1616;
  text-decoration: none;
}

a:hover {
  color: #e82d2d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #cc1616;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e72323;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #cc1616;
  border-top-color: #efefef;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #191919;
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}

#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #cc1616;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(25, 25, 25, 0.95);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}

#header.fixed-top {
  background: #191919;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  margin-left: 5px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px 24px 15px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  background: #cc1616;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #191919;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #cc1616;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #191919;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #cc1616;
  background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #cc1616;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 110px);
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #cc1616;
  border-color: #cc1616;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
  }

  #hero .container {
    padding-top: 40px;
  }

  #hero h1 {
    font-size: 20px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #191919;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/* About Section Styling */
.about {
  padding: 70px 0; /* lebih lega atas bawah */
}

.about-video-wrapper {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  margin-bottom: 30px; /* kasih lebih banyak jarak di mobile */
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Teks Content */
.about .content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px; /* jarak antar heading & paragraf */
  line-height: 1.5;
  color: #222;
}

.about .content p {
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 15px;
  color: #444;
}

/* List Styling */
.about .content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 22px;
}

.about .content ul li {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about .content ul li i {
  font-size: 18px;
  color: #c00; /* merah elegan */
  line-height: 1.5;
  margin-top: 3px; /* biar sejajar sama teks */
}

.about .content ul li span {
  font-size: 20px;
  line-height: 1.5;
  flex-shrink: 0; /* biar icon ga ketekan */
}

.about .content ul li strong {
  font-weight: 600;
  margin-right: 4px;
  color: #222;
}

/* Responsive */
@media (min-width: 992px) {
  .about-video-wrapper {
    margin-bottom: 0; /* di desktop ga perlu gap bawah */
  }

  .about .content h3 {
    font-size: 24px;
  }

  .about .content p,
  .about .content ul li {
    font-size: 16px;
  }
}

/*=============================
# OUR BRANDS SECTION
=============================*/
.brands-section {
  padding: 80px 0 20px; /* atas 80px, bawah cukup 20px biar nyatu */
  text-align: center;
}

.brands-title {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.brand-banner {
  max-width: 550px;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
  margin: 0 auto; /* Biar selalu di tengah */
  display: block;
}

.brand-banner:hover {
  filter: none;
  transform: scale(1.05);
}

/* ======================
   Responsive: Tablet
====================== */
@media (max-width: 768px) {
  .brands-section {
    padding: 60px 20px 10px; /* atas 60, bawah 10 */
  }

  .brand-banner {
    max-width: 280px;
  }
}

/* ======================
   Responsive: Mobile
====================== */
@media (max-width: 480px) {
  .brands-section {
    padding: 50px 15px 5px;
  }

  .brand-banner {
    max-width: 240px;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: whitesmoke;
  padding: 20px 0;
  margin-top: 40px;  /* ✅ jarak dari section sebelumnya */
  margin-bottom: 40px; /* ✅ jarak ke section selanjutnya */
  text-align: center;
}

.client-logo {
  width: 120px;
  max-width: 100%;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo:hover {
  filter: none;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo {
    width: 85px;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .client-logo {
    width: 75px;
    margin: 8px auto;
  }
}

/*--------------------------------------------------------------
# POP UP DISTRIBUTOR
--------------------------------------------------------------*/
#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 999;
}

#popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 1000;
  font-family: "Segoe UI", sans-serif;
}

#popup-box p {
  text-align: center;
  margin: 12px 0;
  line-height: 1.6;
}

/* ACTIVE STATE */
#popup-box.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

#popup-box h2 {
  font-weight: 700;
  margin-bottom: 16px;
}

#popup-box p {
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}

.popup-title {
  text-align: center;
  margin-bottom: 16px;
  text-decoration: underline;
}

.popup-title .line-1 {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.popup-title .line-2 {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

#popup-box ul {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
}

#popup-box ul li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
  color: #333;
}

#popup-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-size: 20px;
  top: -2px;
}

#popup-box a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}

#popup-box a:hover {
  text-decoration: underline;
}

#popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: none;
  font-size: 26px;
  cursor: pointer;
  color: #999;
}

#popup-close:hover {
  color: #000;
}

.popup-footer {
  text-align: center;
  margin-top: 20px;
}

#popup-action {
  padding: 10px 28px;
  border-radius: 25px;
  border: none;
  background: #cc1616;
  color: #fff !important;   /* paksa jadi putih */
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;    /* hilangin garis bawah link */
  display: inline-block;    /* biar bisa dikasih padding */
}

#popup-action:hover {
  color: #fff;
  background: #000000;
}

/* ACTIVE STATE */
#popup-overlay.active,
#popup-box.active {
  opacity: 1;
  visibility: visible;
}

#popup-box.active {
  transform: translate(-50%, -50%) scale(1);
}


/* RESPONSIVE */
@media (max-width: 480px) {
  #popup-box {
    padding: 22px 20px;
    border-radius: 14px;
  }

  #popup-box h2 {
    font-size: 1.3rem;
  }

  #popup-box p,
  #popup-box ul li {
    font-size: 0.9rem;
  }

  #popup-action {
    width: 100%;
    text-align: center;
  }
}

/*==============================
# PERFORMANCE SECTION
==============================*/
.performance-section {
  padding: 60px 0;
}

.performance-section h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.performance-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.performance-link {
  display: inline-block;
  margin-top: 10px;
  color: #834c2f;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.performance-link:hover {
  text-decoration: underline;
}

.performance-img {
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 340px; /* Default desktop */
  object-fit: cover;
}

.btn-performance {
  display: inline-block;
  padding: 10px 24px;
  background-color: #c00000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-performance:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .performance-section {
    padding: 40px 20px;
    text-align: center;
  }

  .performance-section h2 {
    font-size: 26px;
  }

  .performance-section p {
    font-size: 15px;
  }

  .performance-link {
    font-size: 14px;
  }

  .performance-img {
    height: 260px; /* ✅ Samain dengan factory */
    object-fit: cover;
    width: 100%;
    margin-bottom: 20px;
  }
}


/*============================================
# OUR CLIENT
=============================================*/
.clients-section {
  background: whitesmoke;
  padding: 20px 0;
  text-align: center;
  overflow: hidden; /* ✅ agar scroll keluar tidak muncul */
}

.clients-section .section-title {
  margin-bottom: 40px;
}

.clients-section .section-title h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.clients-section .section-title p {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

/* Swiper Container */
.clients-section .swiper {
  margin-bottom: 40px;
  padding: 10px 0;
}

/* Swiper Slides */
.clients-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto !important;
}

.clients-section .swiper-slide img {
  max-width: 120px;
  height: auto;
  margin: 0 16px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-section .swiper-slide img:hover {
  filter: none;
  transform: scale(1.1);
}

.clientSwiper1 .swiper-slide,
.clientSwiper2 .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientSwiper1 img,
.clientSwiper2 img {
  max-width: 120px;
  height: auto;
  pointer-events: auto;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.clientSwiper1 img:hover,
.clientSwiper2 img:hover {
  filter: none;
  transform: scale(1.1);
}

/* ====================
   Responsive: Tablet
==================== */
@media (max-width: 768px) {
  .clients-section {
    padding: 35px 15px;
  }

  .clients-section .section-title h2 {
    font-size: 28px;
  }

  .clients-section .section-title p {
    font-size: 14px;
  }

  .clientSwiper1,
  .clientSwiper2 {
    margin-bottom: 35px;
  }

  .clients-section .swiper-slide img,
  .clientSwiper1 img,
  .clientSwiper2 img {
    max-width: 80px;
    margin: 0 10px;
  }
}

/* ==========================
   Responsive: Mobile Kecil
========================== */
@media (max-width: 576px) {
  .clients-section {
    padding: 30px 10px;
  }

  .clients-section .section-title h2 {
    font-size: 24px;
  }

  .clients-section .section-title p {
    font-size: 13px;
  }

  .clients-section .swiper-slide img,
  .clientSwiper1 img,
  .clientSwiper2 img {
    max-width: 65px;
    margin: 0 6px;
  }
}

/* ==========================
   Extra Narrow (320px-360px)
========================== */
@media (max-width: 360px) {
  .clients-section .swiper-slide img,
  .clientSwiper1 img,
  .clientSwiper2 img {
    max-width: 58px;
    margin: 0 5px;
  }

  .clientSwiper1 {
    margin-bottom: 40px;
  }
}


/*============================================================
# FACTORY
============================================================*/
.factory-section {
  background: whitesmoke;
  padding: 60px 0;
}

.factory-text h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.factory-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 500px;
}

.btn-factory {
  display: inline-block;
  padding: 12px 30px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-factory:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* Slider image */
.factory-slider .swiper {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.factory-slider img,
.factory-img {
  width: 100%;
  height: 340px; /* Tinggi default desktop */
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  /* Text */
  .factory-text {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .factory-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .factory-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .btn-factory {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 30px;
  }

  /* Gambar */
  .factory-slider img,
  .factory-img {
    width: 100%;
    height: 260px; /* ✅ Disamakan dengan performance & catalogue */
    margin-bottom: 20px;
  }
}

/*==============================
# CATALOGUE SECTION
==============================*/
.catalogue-section {
  padding: 60px 0;
}

.catalogue-section h2 {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}

.catalogue-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.catalogue-img {
  width: 100%;
  height: 340px; /* Default desktop height */
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #a67c52;
  margin-bottom: 12px;
}

.btn-download {
  display: inline-block;
  padding: 12px 28px;
  background-color: #c00000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-download:hover {
  background-color: #000;
  transform: translateY(-2px);
}

.btn-download span {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.btn-download:hover span {
  opacity: 0;
  visibility: hidden;
}

.btn-download::after {
  content: attr(data-hover);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  font-size: 14px; /* Ukuran hover text lebih kecil */
  transition: opacity 0.3s ease;
  color: #fff;
  white-space: nowrap;
}

.btn-download:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .catalogue-section {
    padding: 40px 20px;
    text-align: center;
  }

  .catalogue-section h2 {
    font-size: 26px;
  }

  .catalogue-section p {
    font-size: 15px;
  }

  .catalogue-img {
    height: 260px; /* ✅ Samakan tinggi di mobile */
    object-fit: cover;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# LINKED WEB
--------------------------------------------------------------*/
#product-showcase .container {
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ===============================
   CATEGORY TABS
   =============================== */
.category-tabs {
  display: flex;
  justify-content: flex-start; /* sejajarkan kiri */
  gap: 28px;
  margin-bottom: 30px;
  overflow-x: auto; /* biar responsif di mobile */
  -webkit-overflow-scrolling: touch;
}

.category-btn {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  padding-bottom: 8px;
  color: #333;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.category-btn.active {
  font-weight: 600;
  color: #000;
}

.category-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #000;
}

/* ===============================
   SHOWCASE IMAGE & TEXT
   =============================== */
.showcase-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.image-container {
  flex: 1 1 55%;
  display: flex;
  justify-content: flex-start;
}

.image-container img {
  display: none;
  width: 100%;
  max-width: 650px; /* Batasi lebar maksimal */
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.image-container img.active {
  display: block;
  animation: slideVertical 0.5s ease;
}


.image-container img.active {
  display: block;
  animation: slideVertical 0.5s ease;
}

/* Animasi vertikal */
@keyframes slideVertical {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-container {
  flex: 1 1 35%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.text-container.fade-out {
  opacity: 0;
}

.text-container.fade-in {
  opacity: 1;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
  .showcase-container {
    flex-direction: column;
  }

  .image-container, .text-container {
    flex: 1 1 100%;
  }

  .text-container {
    text-align: center;
  }

  .category-tabs {
    gap: 20px;
  }
}

/*=============================================================
# New Product
===============================================================*/
/* === PRODUCT SECTION === */
.product-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
}

.product-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-section .section-header p {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0a0a0;
  margin-bottom: 8px;
  font-size: 14px;
}

.product-section .section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

/* === CAROUSEL WRAPPER === */
.carousel-wrapper {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar {
  display: none;
}

/* === PRODUCT CARD === */
.product-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.product-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.product-card:hover img {
  transform: scale(1.05);
}

/* === CAROUSEL BUTTONS === */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: #f5f5f5;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.85);
}


/* === RESPONSIVE === */
@media (max-width: 992px) {
  .product-card {
    flex: 0 0 250px;
  }
  .carousel-btn.prev {
    left: -15px;
  }
  .carousel-btn.next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 60px 0;
  }

  .product-section .section-header h2 {
    font-size: 22px;
  }

  .product-card {
    flex: 0 0 220px;
    padding: 15px;
  }

  .product-card img {
    height: 180px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn.prev {
    left: 5px;
  }

  .carousel-btn.next {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 80%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(255, 255, 255, 0);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #cc1616;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(204, 22, 22, 0.15);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #191919;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #cc1616;
  border-color: #cc1616;
  padding: 70px 20px 90px 20px;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #cc1616;
}

.services .icon-box:hover .icon::before {
  background: rgba(255, 255, 255, 0.3);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: 
    linear-gradient(rgba(5, 5, 5, 0.5), rgba(0, 0, 0, 0.7)), 
    url("../img/cta-bg1.webp") center center / cover fixed;
  padding: 8rem 0;
  text-align: center;
}

.cta h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px; /* tambah ruang biar lega */
  transition: all 0.4s ease;
  margin: 8px 5px;
  min-width: 180px; /* biar tombol gak terlalu sempit */
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 6px;
  background: transparent;
  white-space: nowrap; /* tetap 1 baris */
  overflow: visible; /* biar teks gak kepotong */
  text-overflow: unset; /* nonaktifkan ellipsis */
}


.cta .cta-btn:hover {
  background: #cc1616;
  border-color: #cc1616;
  box-shadow: 0 0 15px rgba(204, 22, 22, 0.4);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media only screen and (max-width: 768px) {
  .cta {
    padding: 5rem 1rem;
  }

  .cta h3 {
    font-size: 1.6rem;
  }

  .cta .cta-btn {
    width: 100%;
    margin: 10px 0;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta .cta-btn {
    width: 100%;
    white-space: normal;
    text-overflow: unset;
  }
}

/* =========================
   HERO PARTNERSHIP
========================= */
.partner-hero {
  width: 100%;
  margin: 6px 0;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text h1 {
  font-size: 58px;
  font-weight: 700;
  color: #cc1616;
  margin-bottom: 6px;
}

.hero-text p {
  font-size: 28px;
  color: #555;
  margin: 0;
}

.hero-image img {
  max-width: 550px;
  width: 100%;
}

/* =========================
   KEMITRAAN
========================= */
/* lock scroll saat loading */
body.loading-active {
  overflow: hidden;
}

.kemitraan-wrap {
  width: 100%;
  margin: 6px 0;
}

.kemitraan-content h2 {
  font-weight: 800;
  color: #cc1616;
  text-align: left;      /* dari center jadi kiri */
  margin-bottom: 16px;
  font-size: clamp(20px, 3.5vw, 28px);
  position: relative;
}

.kemitraan-content h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #cc1616;
  display: block;
  margin: 6px 0 0;       /* dari auto jadi kiri */
  border-radius: 2px;
}

.kemitraan-block {
  margin-bottom: 14px;
}

.kemitraan-block h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.kemitraan-block ol {
  padding-left: 18px;
  margin: 0;
  line-height: 1.7;
  color: #333;
  font-size: 14px;
}

/* SIGNATURE */
.signature-box {
  margin-top: 18px;
}

.signature-box p {
  margin-bottom: 4px;
  color: #555;
  font-size: 14px;
}

.signature-line {
  width: 220px;
  height: 2px;
  background: #000;
  margin: 10px 0 6px;
}

.signature-box span {
  font-size: 13px;
  color: #777;
}

/* BUTTON */
.kemitraan-btn {
  margin-top: 16px;
}

.kemitraan-btn a {
  background: #cc1616;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  display: inline-block;
  font-size: 15px;
}

.kemitraan-btn a:hover {
  background: #a80000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .hero-text p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# FORM PERSYARATAN
--------------------------------------------------------------*/
body.page-kemitraan {
  min-height: 100vh;

  background-image:
    linear-gradient(
      rgba(245, 244, 244, 0.88),
      rgba(255,255,255,0.88)
    ),
    url("/assets/img/kemitraan/bg2.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* lock scroll saat loading */
body.loading-active {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Form Wrapper
--------------------------------------------------------------*/
.form-wrap {
  max-width: 720px;
  margin: 10px auto;
  padding: 0 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
}

.form-wrap h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-wrap p {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Card Form
--------------------------------------------------------------*/
.kemitraan-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
}

.kemitraan-form h3 {
  margin: 28px 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: #cc1616;
}

/*--------------------------------------------------------------
# Field
--------------------------------------------------------------*/
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* focus only (NO auto red) */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #cc1616;
  box-shadow: 0 0 0 2px rgba(204,22,22,0.15);
}

/* error (DISET VIA JS) */
.field-error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 2px rgba(248,113,113,0.2);
}

/* disabled */
.form-group select:disabled,
.form-group input:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

/*--------------------------------------------------------------
# Action Button
--------------------------------------------------------------*/
.form-action {
  margin-top: 32px;
  text-align: center;
}

.form-action button {
  background: #cc1616;
  color: #fff;
  border: none;
  padding: 14px 42px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.form-action button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(204,22,22,0.25);
}

.form-action button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/*--------------------------------------------------------------
# GLOBAL LOADING OVERLAY (FULLSCREEN & AMAN)
--------------------------------------------------------------*/
.loading-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(3px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-size: 14px;
  font-weight: 500;
  color: #444;

  z-index: 99999;
}

.loading-overlay.hidden {
  display: none;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #e5e7eb;
  border-top-color: #cc1616;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Upload Progress (FILE ONLY)
--------------------------------------------------------------*/
.upload-progress {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444;
}

.upload-progress.hidden {
  display: none;
}

.upload-bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
}

.upload-bar-fill {
  width: 0%;
  height: 100%;
  background: #cc1616;
  border-radius: 20px;
  transition: width 0.25s ease;
}

/*--------------------------------------------------------------
# Alert
--------------------------------------------------------------*/
.form-alert {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}

.form-alert.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
}

.form-alert.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 600px) {
  .kemitraan-form {
    padding: 22px;
  }

  .form-wrap h1 {
    font-size: 26px;
  }

  .form-action button {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Portfolio (EDITORIAL CLEAN VERSION)
--------------------------------------------------------------*/


/* =========================
   FILTER
========================= */
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#portfolio-flters li {
  padding: 6px 16px;
  border-radius: 30px;
  background: #f2f2f2;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #e82d2d;
  background: #ececec;
}


/* ======================================================
   PORTFOLIO SECTION
====================================================== */

.portfolio .portfolio-item {
  margin-bottom: 50px;
}


/* ======================================================
   CARD STRUCTURE
====================================================== */

.portfolio-card{
  display:flex;
  flex-direction:column;
  height:100%;
}


/* ======================================================
   IMAGE
====================================================== */

.portfolio-card a{
  display:block;
  overflow:hidden;
}

.portfolio-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform .7s ease;
}

/* smooth hover zoom */

.portfolio-card:hover img{
  transform:scale(1.06);
}


/* ======================================================
   CONTENT AREA
====================================================== */

.portfolio-content{
  margin-top:18px;
}


/* PROJECT NAME */

.project-name{
  font-size:16px;
  font-weight:600;
  color:#111;
  margin:0;
  line-height:1.45;
  letter-spacing:.2px;
}


/* META INFO (CITY + YEAR) */

.project-meta{
  margin-top:6px;
  font-size:12.5px;
  color:#7a7a7a;
  letter-spacing:1.2px;
  text-transform:uppercase;
}


/* ======================================================
   MICRO INTERACTION
====================================================== */

.project-name::after{
  content:"";
  display:block;
  width:0;
  height:1px;
  background:#111;
  margin-top:6px;
  transition:width .35s ease;
}

.portfolio-card:hover .project-name::after{
  width:42px;
}


/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width:992px){

  .portfolio-card img{
    height:230px;
  }

}

@media (max-width:768px){

  .portfolio-card img{
    height:210px;
  }

  .project-name{
    font-size:15px;
  }

  .project-meta{
    font-size:12px;
    letter-spacing:1px;
  }

}

@media (max-width:480px){

  .portfolio-card img{
    height:185px;
  }

  .project-name{
    font-size:14px;
  }

}


/* ======================================================
   PORTFOLIO DETAILS PAGE
====================================================== */

.portfolio-details{
  padding-top:40px;
}


/* slider image */

.portfolio-details .portfolio-details-slider img{
  width:100%;
  height:auto;
  object-fit:cover;
}


/* slider pagination */

.portfolio-details .portfolio-details-slider .swiper-pagination{
  margin-top:20px;
  position:relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet{
  width:8px;
  height:8px;
  background:#fff;
  opacity:1;
  border:1px solid #cc1616;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active{
  background:#cc1616;
}


/* info box */

.portfolio-details .portfolio-info{
  padding:20px;
  box-shadow:0 5px 25px rgba(0,0,0,0.08);
}

.portfolio-details .portfolio-info h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
  padding-bottom:8px;
  border-bottom:1px solid #eee;
}

.portfolio-details .portfolio-info ul{
  list-style:none;
  padding:0;
  font-size:14px;
}

.portfolio-details .portfolio-info ul li + li{
  margin-top:6px;
}


/* description */

.portfolio-details .portfolio-description{
  padding-top:10px;
}

.portfolio-details .portfolio-description h2{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
}

.portfolio-details p{
  line-height:1.5;
  font-size:14px;
  margin-bottom:10px;
}


/* ======================================================
   TABLE
====================================================== */

table{
  border-collapse:collapse;
  width:100%;
}

th,td{
  padding:14px;
  font-size:14px;
}

.portfolio-details .portfolio-description th{
  border:1px solid #ddd;
  text-align:left;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  gap: 20px;
  background: #ffffff;
  text-align: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(179, 179, 179, 0.6);
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #191919;
}

.pricing .box h4 {
  font-size: 42px;
  color: #cc1616;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #191919;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #cc1616;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #666464;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  background: #cc1616;
  display: inline-block;
  padding: 10px 40px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #e82d2d;
}

.pricing .featured {
  background: #cc1616;
  box-shadow: none;
  color: #fff;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured ul,
.pricing .featured ul li,
.pricing .featured ul .na {
  color: #fff;
}

.pricing .featured h4 span {
  color: rgba(255, 255, 255, 0.58);
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  background: rgba(255, 255, 255, 0.2);
}

.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #cc1616;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px; 
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #cc1616;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.pricing .box .btn-buy {
  background: #cc1616;
  display: inline-block;
  padding: 10px 40px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 60px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #cc1616;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f5a0a0;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #cc1616;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #cc1616;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e82d2d;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #efefef;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333333;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0c0c0c;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #191919;
  color: #fff;
  border-top: 4px solid #cc1616;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 36px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #262626;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #cc1616;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ed5b5b;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #eb4444;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #cc1616;
  color: #fff;
  transition: 0.3s;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #e82d2d;
}

#footer .copyright {
  border-top: 1px solid #262626;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #e82d2d;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border: 1px solid rgb(100 100 100);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1px;
}

caption {
  caption-side: bottom;
  padding: 10px;
  font-weight: bold;
}

thead,
tfoot {
  background-color: rgb(228 240 245);
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 1px 5px;
}

td:last-of-type {
  text-align: center;
}

tbody > tr:nth-of-type(even) {
  background-color: rgb(237 238 242);
}

tfoot th {
  text-align: right;
}

tfoot td {
  font-weight: bold;
}

/*--------------------------------------------------------------
# sidebar
--------------------------------------------------------------*/
.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 200px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 0; /* Stay on top */
  top: 22px; /* Stay at the top */
  left: 0;
  background-color: #191919; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 15px;
  color: #aaaaaa;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 10px;
  text-decoration: none;
  font-size: 13px;
  color: #818181;
  display: block;
  justify-content: space-between;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Style page content */
.main {
  margin-left: 160px; /* Same as the width of the sidebar */
  padding: 0px 10px;
}

/* Hamburger Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  height: 20px;
  justify-content: space-between;
  background-color: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #aaaaaa;
  border-radius: 3px;
}

.menu-toggle input {
  position: absolute;
  width: 40px;
  height: 28px;
  left: -5px;
  top: -3px;
  opacity: 0;
  cursor: pointer;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-width: 768px) {
  .sidenav {width: 40%;}
}

@media screen and (max-width: 576px) {
  .sidenav {display: none;}
}

.zoom {
  padding: 50px;
  transition: transform .2s; /* Animation */
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
