/**
* Template Name: Eterna
* Template URL: https://bootstrapmade.com/eterna-free-multipurpose-bootstrap-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #545454; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ed1c24; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #ed1c24; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ed1c24; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3c3c3c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #565656;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Tombol WA mengambang
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Tombol WA mengambang
--------------------------------------------------------------*/
.wa-fab {
  position: fixed !important;
  left: 16px !important;
  bottom: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
  z-index: 2147483647 !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}
.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22) !important;
}
.wa-fab__icon { width:22px; height:22px; fill:currentColor; }

/* geser tombol scroll-top agar tidak tabrakan */
#scroll-top.scroll-top {
  left: 16px !important;
  bottom: 72px !important;
  right: auto !important;
}




/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

body p {
    font-family : Roboto;
    font-size : 12;
    }

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--background-color);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 8px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--background-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* ===== Instagram Button ===== */
.footer .footer-links .footer-instagram {
  margin-top: 8px;
}

.footer .footer-links .instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff !important;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer .footer-links .instagram-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
  color: #fff;
}

.footer .footer-links .instagram-btn i {
  font-size: 16px;
  color: #fff;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-height: 400px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero .carousel-item h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

.hero .carousel-item h2 span {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero .carousel-item h2 {
    font-size: 30px;
  }
}

.hero .carousel-item p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 15%;
  transition: 0.3s;
  opacity: 0.4;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  color: var(--default-color);
  font-size: 48px;
  line-height: 1;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: var(--accent-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

.hero .carousel-indicators li.active {
  opacity: 1;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero .carousel-indicators li {
    margin-bottom: 20px;
  }
}

.hero .featured {
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

@media (max-height: 768px),
(max-width: 1024px) {
  .hero .featured {
    margin-top: 0;
  }
}

.hero .featured-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero .featured-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.hero .featured-item .icon {
  margin-bottom: 10px;
}

.hero .featured-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.hero .featured-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.hero .featured-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.hero .featured-item small {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.hero .featured-item:hover h4 a,
.hero .featured-item:hover .icon i,
.hero .featured-item:hover small {
  color: var(--contrast-color);
}

.hero .featured-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* --------------------------------------------------------------
# Hero Section ForkliftIndonesia / SaranaAceh
-------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px); /* pas dengan tinggi header */
  overflow: hidden;
  color: #fff;
}

/* Background warehouse */
.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay gelap agar teks terlihat */
.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Container isi hero */
.hero .container {
  position: relative;
  z-index: 3;
}

/* Judul teks kiri */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.text-accent {
  color: #e31317; /* warna utama merah */
}

/* Paragraf teks kiri */
.hero p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Tombol utama */
.btn-get-started {
  background: #e31317;
  color: #fff;
  border-radius: 50px;
  padding: 12px 36px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-get-started:hover {
  background: #b50f13;
  color: #fff;
  transform: translateY(-2px);
}

/* ===============================
   HERO SECTION FIX PNG FORKLIFT
================================*/
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  overflow: visible !important;
  color: #fff;
}

/* Background warehouse */
.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Kontainer isi hero */
.hero .container {
  position: relative;
  z-index: 3;
}

/* Pastikan row dan kolom tidak memangkas gambar */
.hero .row,
.hero .col-lg-6 {
  overflow: visible !important;
}

/* Gambar forklift kanan */
.hero-img {
  position: absolute !important;
  right: 5%;
  bottom: 0;
  max-width: 55%;
  height: auto;
  z-index: 10 !important; /* di atas overlay dan teks */
  opacity: 1 !important;
  display: block !important;
  animation: forkliftFloat 4s ease-in-out infinite;
  pointer-events: none;
}

/* Animasi floating lembut */
@keyframes forkliftFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Warna teks aksen */
.text-accent {
  color: #e31317;
}

/* Tombol utama */
.btn-get-started {
  background: #e31317;
  color: #fff;
  border-radius: 50px;
  padding: 12px 36px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background: #b50f13;
  transform: translateY(-2px);
}

/* Responsive behavior */
@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding-top: 80px;
  }
  .hero-img {
    position: relative !important;
    margin: 40px auto 0;
    right: auto;
    bottom: auto;
    max-width: 75%;
  }
}

/* tambahan */
/* Image Banner
------------------------------------------------------------------------*/

.frontpage-banner.image-banner{ position:relative; overflow:hidden; color:#fff; }
.frontpage-banner.image-banner.banner-featured-image { padding:200px 0 180px;  }
.frontpage-banner.image-banner.banner-custom-header { padding:200px 0 180px;  }
.frontpage-banner.banner-none { padding-top: 60px; padding-bottom: 50px;  }
.frontpage-banner.image-banner .container{ z-index:3; position:relative }
.frontpage-banner.image-banner p{ font-size:20px; font-weight:bold; margin-bottom:20px; }
.frontpage-banner.image-banner .description{ font-size:20px; font-weight:bold; }

.frontpage-banner.image-banner.full-screen .container{ min-height:200px; height:100%; text-align:center }
.frontpage-banner.image-banner.full-screen .inner{ display:inline-block; vertical-align:middle; }
.frontpage-banner.image-banner.full-screen p{ font-size:20px; font-weight:bold; }
.frontpage-banner.image-banner.frontpage-banner .block-title{ font-size:36px; font-weight:900;  }

/* .home .jumbotron.parallax-bg { background: none !important; } */
.frontpage-banner.frontpage-banner-parallax-bg{ margin:0; padding:180px 0 160px; line-height:26px; } 
.frontpage-banner.frontpage-banner-parallax-bg:before { width: 100%; height: 100%; background-color: #000; opacity: 0.35; content: ""; position: absolute; left: 0; top: 0; z-index: 2; }

.image-banner .block-title{ color:#fff; }

/** New banner frontpage
*/

#icon-slide{
    position:absolute;
    top:-50px;
    right:0;
    }
    
@media (max-width:720px){

    #icon-slide{
        display:none;
        }

}   


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content #unggul {
  color: var(--accent-color);

}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .icon::before {
  background: color-mix(in srgb, var(--background-color), transparent 70%);
}

.services .service-item:hover h3,
.services .service-item:hover p {
  color: var(--contrast-color);
}

/* === LAYANAN KAMI CUSTOM HOVER EFFECT === */
.jt-service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.jt-service-thumb {
  overflow: hidden;
}

.jt-service-thumb img {
  width: 100%;
  transition: transform 0.4s ease;
}

.jt-service-card:hover {
  border: 1.8px solid #e31317; /* Warna merah outline */
  box-shadow: 0 4px 12px rgba(227, 19, 23, 0.2);
  transform: translateY(-4px);
}

.jt-service-card:hover img {
  transform: scale(1.08);
}

/* Tombol default */
.jt-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Tombol putih-outline */
.jt-btn-outline {
  border: 1.5px solid #e31317;
  background: #fff;
  color: #e31317;
}

.jt-btn-outline:hover {
  background: #e31317;
  color: #fff;
}

/* Saat hover seluruh kartu: tombol otomatis ikut berubah */
.jt-service-card:hover .jt-btn-outline {
  background: #e31317;
  color: #fff;
}

/* Judul */
.jt-service-title {
  font-weight: 700;
  margin-top: 15px;
  color: #222;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.jt-service-card:hover .jt-service-title {
  color: #e31317;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.skills .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team .team-member .social a:hover {
  background: var(--accent-color);
}

.team .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts {
  padding-top: 30px;
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#alamat i {
    color: var(--accent-color);
    }
.contact .info-item {
  background-color: var(--surface-color);
  padding: 10px 0 10px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 30px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/* ==========================================================
   Floating WhatsApp (ikon bulat saja, di atas scroll-top)
   ========================================================== */

/* gaya dasar tombol WA lama (biar tidak melebar) */
.wa-fab{
  position: fixed !important;
  right: 16px !important;
  left: auto !important;
  z-index: 2147483647 !important;
  text-decoration: none !important;
}

/* versi ikon bulat */
.wa-fab--icon{
  bottom: 120px !important;           /* >>> DI ATAS SCROLL-UP <<< */
  width: 56px !important;
  height: 56px !important;
  border-radius: 999px !important;
  background: #25D366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
  transition: transform .15s ease, box-shadow .15s ease !important;
}

/* ikon svg di dalam tombol */
.wa-fab--icon .wa-fab__icon{
  width: 30px !important;
  height: 30px !important;
  display: block !important;
}

/* animasi hover */
.wa-fab--icon:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25) !important;
}

/* kalau ada label lama, pastikan tersembunyi */
.wa-fab__label{ display: none !important; }

/* Scroll-top diletakkan sedikit di bawah WA (biar tidak tabrakan) */
#scroll-top.scroll-top{
  right: 16px !important;
  left: auto !important;
  bottom: 56px !important;            /* di bawah WA */
}

/* ====== FAB positions: WhatsApp di kiri, Scroll-Up di kanan ====== */
:root{
  --fab-size: 56px;   /* diameter tombol bulat */
  --fab-gap:  12px;   /* jarak antar tombol */
  --fab-bottom: 56px; /* jarak dari bawah layar untuk KEDUA tombol */
}

/* Scroll-Up (kanan) */
#scroll-top.scroll-top{
  right: 16px !important;
  left: auto !important;
  bottom: var(--fab-bottom) !important;
}

/* WhatsApp (kiri dari scroll-up) */
.wa-fab--icon{
  bottom: var(--fab-bottom) !important;
  /* posisikan WA di kiri tombol scroll-up:  right = 16px + lebar tombol + gap */
  right: calc(16px + var(--fab-size) + var(--fab-gap)) !important;

  width: var(--fab-size) !important;
  height: var(--fab-size) !important;
}

/* ikon svg di dalam WA */
.wa-fab--icon .wa-fab__icon{
  width: 30px !important;
  height: 30px !important;
}


/* === FIX HERO FORKLIFT TIDAK MUNCUL === */
/*--------------------------------------------------------------
# Custom Hero ForkliftIndonesia (Full Rebuild)
--------------------------------------------------------------*/
.hero-section {
  position: relative !important;
  overflow: visible !important;   /* biarkan elemen bisa keluar area hero */
  min-height: 100vh !important;   /* biar tinggi hero menyesuaikan layar */
}

/* Pastikan wrapper gambar tidak memotong */
.hero-section .row,
.hero-section .col-lg-6 {
  overflow: visible !important;
}


/* Background image + overlay */
.hero-section .hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-section .hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.text-accent {
  color: #e31317;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.8rem;
}

.btn-get-started {
  background: #e31317;
  color: #fff;
  border-radius: 50px;
  padding: 12px 36px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background: #b50f13;
  transform: translateY(-2px);
}

/* Forklift image */
.hero-img-wrapper {
  position: relative;
  overflow: visible !important;
}



/* ===============================
   HERO FIX FORKLIFT POSISI DASAR
================================ */


/* === HERO FORKLIFT FINAL FIX - FULL WIDTH, SEAL ON FLOOR === */
section.hero-section {
  position: relative !important;
  overflow: visible !important;
  min-height: calc(100vh - 80px) !important; /* biar nggak pendek */
  padding-bottom: 60px !important; /* beri ruang bawah ekstra */
}

/* Pastikan wrapper dan kolom tidak memotong area */
.hero-section .row,
.hero-section .col-lg-6,
.hero-section .col-md-12 {
  overflow: visible !important;
}

/* Forklift Image */
.hero-forklift {
  position: absolute !important;
  right: -1% !important;
  bottom: -220px !important; /* ✅ tambahin lebih besar, biar ban sejajar lantai */
  width: clamp(480px, 45vw, 680px) !important;
  height: auto !important;
  z-index: 20 !important;
  pointer-events: none !important;
  opacity: 1 !important;
  display: block !important;
  transform-origin: bottom right !important;
  animation: forkliftFloat 6s ease-in-out infinite !important;
}

/* Animasi halus */
@keyframes forkliftFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Responsif menengah */
@media (max-width: 991px) {
  .hero-forklift {
    max-width:50%;
    bottom: -40px !important;
  }
  .hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
  .hero-subtitle {
      display: none !important;
      }
 
}

/* Hilang total di HP kecil */
@media (max-width: 768px) {
  .hero-forklift {
    display: none !important;
  }
  .hero-subtitle {
      display: none !important;
      }
}


/* === FOOTER CUSTOM SECTION === */
footer {
  position: relative;
  overflow: hidden;
  color: #fff;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background/footer_forklift.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay gelap */
  z-index: 2;
}

/* Pastikan isi footer tetap terlihat di atas overlay */
footer .container,
footer .footer-content {
  position: relative;
  z-index: 3;
}

/* Optional: agar tinggi footer tidak terlalu besar */
footer {
  padding: 60px 0;
  min-height: 300px;
}

/* Responsif */
@media (max-width: 991px) {
  footer {
    text-align: center;
    padding: 40px 0;
  }
}

/* Kurangi jarak bawah footer */
footer {
  padding-bottom: 10px !important; /* sebelumnya mungkin 60px */
}

/* Kurangi jarak antar elemen di dalam footer */
footer .footer-bottom {
  margin-top: 10px !important;
}

footer p,
footer small {
  margin-bottom: 0 !important;
  line-height: 1.4;
}


/* ====== PT Jaya Trade Indonesia – Sections ====== */
:root{
  --jt-red: #E54545;      /* sesuaikan dengan warna brand */
  --jt-dark: #1d1d1f;
  --jt-text: #3f3f46;
  --jt-muted: #6b7280;
  --jt-bg: #f4f5f7;
  --jt-white: #ffffff;
  --jt-radius: 18px;
  --jt-shadow: 0 8px 24px rgba(16,24,40,.08);
}

/* layout helpers */
.jt-section{ padding: 64px 0; background: var(--jt-bg); }
.jt-section.jt-services{ background: #efeff1; }
.jt-container{ width: min(1160px, 92%); margin-inline: auto; }

/* headings */
.jt-heading{
  font: 700 20px/1.2 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--jt-dark);
  text-align: center;
}
.jt-underline{
  display:block;
  width: 120px; height: 4px; margin: 10px auto 28px;
  background: var(--jt-red); border-radius: 999px;
}

/* cards */
.jt-card{
  background: var(--jt-white);
  border-radius: var(--jt-radius);
  box-shadow: var(--jt-shadow);
}

/* ====== About ====== */
.jt-about-card{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 24px;
  align-items:center;
}

.jt-about-left{ display:flex; justify-content:center; }
.jt-logo-circle{
  position: relative;
  width: 240px; height: 240px;
  border-radius: 50%;
  display:grid; place-items:center;
  background: var(--jt-white);
  box-shadow: inset 0 0 0 2px rgba(229,69,69,.25);
}
.jt-logo-circle::before{
  /* garis lengkung merah dekoratif seperti contoh */
  content:"";
  position:absolute; inset: -14px;
  border-radius:50%;
  border: 3px solid transparent;
  border-left-color: var(--jt-red);
  border-top-color: var(--jt-red);
  transform: rotate(10deg);
}
.jt-logo-circle img{ width: 62%; height: auto; }

.jt-about-right .jt-subtitle{
  margin: 0 0 8px;
  font: 700 18px/1.3 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  color: var(--jt-dark);
  text-transform: uppercase;
}
.jt-about-right p{
  margin: 0;
  color: var(--jt-text);
  line-height: 1.7;
  font-size: 15px;
}


/* ====== Services ====== */
.jt-services-wrap{
  display:grid;
  grid-template-columns: 1.15fr 2fr;
  gap: 20px;
}

.jt-services-desc{
  padding: 22px;
  background: #f7f7f8;
  border: 1px solid #e6e6e7;
}
.jt-services-desc p{
  margin:0; color: var(--jt-muted); line-height:1.75; font-size:15px;
}

.jt-services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jt-service-card{
  overflow:hidden;
  display:flex; flex-direction:column;
  border: 1px solid #ececf0;
  border-radius: 16px;
  background: var(--jt-white);
  box-shadow: var(--jt-shadow);
}
.jt-service-card.jt-service-accent{ outline:3px solid rgba(229,69,69,.18); }

.jt-service-thumb{
  aspect-ratio: 4/3; overflow:hidden;
  background: #ddd;
}
.jt-service-thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
}

.jt-service-body{
  padding: 16px 16px 18px;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.jt-service-title{
  margin:0; text-transform:uppercase; letter-spacing:.04em;
  font: 700 14px/1.2 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  color: var(--jt-dark);
}

/* buttons */
.jt-btn{
  display:inline-block; padding:10px 16px; border-radius: 999px;
  font: 700 12px/1 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  letter-spacing:.04em; text-transform:uppercase; text-decoration:none;
  transition: all .2s ease; border:2px solid transparent;
}
.jt-btn-primary{ background: var(--jt-red); color:#fff; }
.jt-btn-primary:hover{ filter:brightness(.95); }

.jt-btn-outline{
  background:#fff; color: var(--jt-red); border-color: var(--jt-red);
}
.jt-btn-outline:hover{ background: rgba(229,69,69,.08); }

/* ====== Responsive ====== */
@media (max-width: 1024px){
  .jt-about-card{ grid-template-columns: 1fr; text-align:center; }
  .jt-about-right{ padding-inline: 6px; }
  .jt-services-wrap{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .jt-services-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .jt-section{ padding: 44px 0; }
  .jt-logo-circle{ width:200px; height:200px; }
  .jt-services-grid{ grid-template-columns: 1fr; }
}

/* ============================================================
   PT Jaya Trade – Produk Kami (Carousel)  —  CLEAN CSS
   Scope: #produk-kami (aman dari konflik global)
   ============================================================ */
/* ============ PC – Product Carousel (prefix pc-*) ============ */
:root{
  --pc-red:#E54545;
  --pc-dark:#1d1d1f;
  --pc-bg:#f3f4f6;
}

.pc-section{ background:var(--pc-bg); padding:60px 0; }
.pc-container{ width:min(1180px, 92%); margin-inline:auto; }
.pc-heading{
  text-align:center; color:var(--pc-dark);
  font:700 20px/1.2 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  letter-spacing:.06em; text-transform:uppercase;
}
.pc-underline{ display:block; width:120px; height:4px; margin:10px auto 28px; background:var(--pc-red); border-radius:999px; }

/* Rail + mask */
.pc-rail{ position:relative; }
.pc-mask{ overflow:hidden; }

/* Swiper root */
#pc-products{ position:relative; padding:0 0 32px; }
#pc-products .swiper-wrapper{ align-items:stretch; }

/* Setiap slide = kartu + tombol */
#pc-products .pc-slide{
  display:flex; flex-direction:column; align-items:center;
}

/* Kartu (gambar di dalam border merah) */
#pc-products .pc-card{
  width:100%;
  height:380px;
  background:#fff;
  border:3px solid var(--pc-red);
  border-radius:24px;
  box-shadow:0 8px 24px rgba(16,24,40,.08);
  padding:18px 18px 20px;
  display:flex; justify-content:flex-start;
}
#pc-products .pc-imghold{
  width:100%; height:250px; display:grid; place-items:center;
}
#pc-products .pc-imghold img{
  max-width:92%; max-height:100%; object-fit:contain; display:block;
}

/* Tombol judul (di luar kotak) */
#pc-products .pc-btn{
  margin-top:14px;
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  font:700 12px/1 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  letter-spacing:.04em; text-transform:uppercase;
  text-align:center; text-decoration:none; user-select:none;
}
#pc-products .pc-btn-red{
  background:var(--pc-red); color:#fff; border:2px solid var(--pc-red);
  box-shadow:0 4px 12px rgba(229,69,69,.25);
  transition:transform .15s ease, filter .15s ease;
}
#pc-products .pc-btn-red:hover{ filter:brightness(.95); transform:translateY(-1px); }

/* Panah (di rail, BUKAN di dalam #pc-products) */
.pc-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:42px; height:42px; border-radius:999px;
  background:#fff; border:2px solid var(--pc-red);
  box-shadow:0 6px 18px rgba(16,24,40,.12); z-index:5; pointer-events:all;
}
.pc-prev{ left:-14px; }
.pc-next{ right:-14px; }
/* ikon panah Swiper */
.pc-prev::after, .pc-next::after{
  font-size:18px; color:var(--pc-red); font-weight:700;
}

/* Pagination */
#pc-products .swiper-pagination-bullet{ background:#d5d5d8; opacity:1; }
#pc-products .swiper-pagination-bullet-active{ background:var(--pc-red); }

/* Breakpoints */
@media (max-width:1200px){
  #pc-products .pc-card{ height:360px; }
  #pc-products .pc-imghold{ height:230px; }
}
@media (max-width:992px){
  .pc-prev{ left:-12px; } .pc-next{ right:-12px; }
}
@media (max-width:768px){
  #pc-products .pc-card{ height:340px; }
  #pc-products .pc-imghold{ height:220px; }
}

/* ==== Center image perfectly inside each product card ==== */
/* kartu: jadikan flex lalu center vertikal+horizontal */
#pc-products .pc-card{
  display: flex !important;
  align-items: center !important;     /* center vertical */
  justify-content: center !important; /* center horizontal */
  padding: 18px !important;
}

/* holder gambar: biar ikut mengisi kartu dan tetap center */
#pc-products .pc-imghold{
  height: 100% !important;                 /* isi penuh tinggi kartu */
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* gambar: skala proporsional, tak melebihi kartu */
#pc-products .pc-imghold img{
  max-height: 100% !important;
  max-width: 92% !important;               /* beri sedikit padding sisi */
  height: auto;
  width: auto;
  object-fit: contain !important;
  display: block;
}


/* ============================================================
   PT Jaya Trade – Halaman Tentang Kami (Carousel)  —  CLEAN CSS
   ============================================================ */


/* ===================== About (abt-*) ===================== */
:root{
  --abt-red:#E54545;
  --abt-dark:#1d1d1f;
  --abt-gray:#6b7280;
  --abt-bg:#f5f6f8;
  --abt-white:#fff;
  --abt-shadow:0 10px 30px rgba(16,24,40,.08);
}

.abt-section{ padding:64px 0; }
.abt-section--alt{ background:var(--abt-bg); }
.abt-container{ width:min(1160px,92%); margin-inline:auto; }

.abt-heading{
  text-align:center; color:var(--abt-dark);
  font:700 20px/1.2 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  letter-spacing:.06em; text-transform:uppercase; margin:0;
}
.abt-underline{ display:block; width:120px; height:4px; margin:12px auto 28px; background:var(--abt-red); border-radius:999px; }

/* Hero */
.abt-hero{ display:grid; grid-template-columns: 1.1fr .9fr; gap:32px; align-items:center; }
.abt-hero__text h2{ margin:0 0 12px; color:var(--abt-dark); font:800 28px/1.25 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial; }
.abt-hero__text p{ color:var(--abt-gray); margin:0 0 12px; }
.abt-bullets{ margin:10px 0 0 0; padding:0 0 0 18px; color:var(--abt-dark); }
.abt-hero__media{ position:relative; }
.abt-hero__img{ width:100%; height:auto; border-radius:18px; box-shadow:var(--abt-shadow); object-fit:cover; }

/* Cards grid */
.abt-grid{ display:grid; gap:18px; }
.abt-grid--4{ grid-template-columns:repeat(4,1fr); }
.abt-grid--3{ grid-template-columns:repeat(3,1fr); }

.abt-card, .abt-why{
  background:var(--abt-white); border:1px solid #eceef2; border-radius:16px; padding:22px;
  box-shadow:var(--abt-shadow); text-align:left;
}
.abt-card h4, .abt-why h4{ margin:10px 0 8px; color:var(--abt-dark); font:700 16px/1.25 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial; }
.abt-card p, .abt-why p{ margin:0; color:var(--abt-gray); }
.abt-ico{ font-size:22px; color:var(--abt-red); }

/* Timeline */
.abt-tl{ list-style:none; margin:0; padding:0; display:grid; gap:16px; }
.abt-tl li{ display:grid; grid-template-columns:100px 1fr; gap:16px; align-items:flex-start; }
.abt-tl__year{
  background:#fff; border:2px solid var(--abt-red); color:var(--abt-red);
  font:800 14px/1 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  padding:10px 12px; border-radius:999px; text-align:center; box-shadow:var(--abt-shadow);
}
.abt-tl__body{ background:#fff; border:1px solid #eceef2; border-radius:12px; padding:14px 16px; color:var(--abt-dark); box-shadow:var(--abt-shadow); }

/* Locations list */
.abt-locs{ display:grid; gap:16px; }
.abt-loc{ display:flex; gap:14px; align-items:flex-start; background:#fff; border:1px solid #eceef2; border-radius:12px; padding:16px; box-shadow:var(--abt-shadow); }
.abt-loc i{ font-size:20px; color:var(--abt-red); margin-top:4px; }
.abt-loc h4{ margin:0 0 6px; font:700 16px/1.25 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial; }
.abt-loc p{ margin:0; color:var(--abt-gray); }

/* CTA */
.abt-cta{ background:linear-gradient(180deg, #fff, #f7f8fa); }
.abt-cta__wrap{ display:flex; gap:24px; align-items:center; justify-content:space-between; background:#fff; border:1px solid #eceef2; border-radius:18px; padding:22px 24px; box-shadow:var(--abt-shadow); }
.abt-cta__txt h3{ margin:0 0 6px; color:var(--abt-dark); font:800 20px/1.25 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial; }
.abt-cta__txt p{ margin:0; color:var(--abt-gray); }
.abt-btn{ display:inline-block; padding:10px 16px; border-radius:999px; font:700 13px/1 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial; letter-spacing:.02em; text-decoration:none; }
.abt-btn--red{ background:var(--abt-red); color:#fff; border:2px solid var(--abt-red); }
.abt-btn--red:hover{ filter:brightness(.95); }
.abt-btn--ghost{ border:2px solid var(--abt-red); color:var(--abt-red); background:#fff; margin-left:8px; }
.abt-btn--ghost:hover{ background:#fff0f0; }

/* Responsive */
@media (max-width: 992px){
  .abt-hero{ grid-template-columns:1fr; }
  .abt-grid--4{ grid-template-columns:repeat(2,1fr); }
  .abt-grid--3{ grid-template-columns:repeat(2,1fr); }
  .abt-cta__wrap{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 640px){
  .abt-grid--4, .abt-grid--3{ grid-template-columns:1fr; }
  .abt-tl li{ grid-template-columns:80px 1fr; }
}

/* ==============================
   JT – About page custom styles
   ============================== */

/* --- Double checklist merah untuk UL hero --- */
#jt-bullets.jt-bullets{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;          /* hilangkan bullet default */
  font: inherit;             /* pakai font default theme */
  color: inherit;
}
#jt-bullets.jt-bullets li{
  position: relative;
  padding-left: 42px;        /* ruang untuk icon ganda */
  margin: 10px 0;
  line-height: 1.6;
}
#jt-bullets.jt-bullets li::before{
  /* dua checklist FA: \f00c \f00c (font awesome solid) */
  content: "\f00c \00a0\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #E54545;
  position: absolute;
  left: 0;
  top: 0;
}

/* --- Apa yang Kami Lakukan: hover merah --- */
#abt-offer .abt-grid .abt-card{
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(16,24,40,.08);
  padding: 24px 22px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  color: #1d1d1f;
}
#abt-offer .abt-grid .abt-card .abt-ico{
  font-size: 26px;
  color: #E54545;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(229,69,69,.10);
  margin-bottom: 12px;
  transition: background .18s ease, color .18s ease;
}
#abt-offer .abt-grid .abt-card h4{
  margin: 8px 0 6px;
  font-weight: 700;
}
#abt-offer .abt-grid .abt-card p{
  margin: 0;
  opacity: .9;
}

/* efek hover: kartu merah, teks putih, ikon putih */
#abt-offer .abt-grid .abt-card:hover{
  background: #E54545;
  color: #fff;
  transform: translateY(-2px);
}
#abt-offer .abt-grid .abt-card:hover .abt-ico{
  background: rgba(255,255,255,.2);
  color: #fff;
}
#abt-offer .abt-grid .abt-card:hover p{
  opacity: 1;
}

/* fokus/aksesibilitas (pakai keyboard) */
#abt-offer .abt-grid .abt-card:focus-within{
  outline: 2px solid #E54545;
  outline-offset: 2px;
}
/* =========================================================
   ABOUT – Perbaikan hover card & bullet double-check merah
   ========================================================= */

/* ----- Card “Apa yang Kami Lakukan” : hover merah, teks putih ----- */
#abt-offer .abt-card{
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
#abt-offer .abt-card:hover{
  background: var(--abt-red, #E54545);
  box-shadow: 0 12px 28px rgba(229,69,69,.28);
  transform: translateY(-3px);
  color: #fff; /* fallback untuk elemen yang ikut inherit */
}
/* pastikan judul & paragraf berubah putih */
#abt-offer .abt-card:hover h4,
#abt-offer .abt-card:hover p{
  color:#fff !important;
}
/* icon ikut jadi putih */
#abt-offer .abt-card .abt-ico{
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
#abt-offer .abt-card:hover .abt-ico{
  color:#fff;
  background: rgba(255,255,255,.14);
  box-shadow: 0 6px 14px rgba(0,0,0,.12) inset;
}

/* ----- UL poin khusus (class & id baru) dengan double-check merah ----- */
#abt-hero .abt-points,
#abt-points.abt-points{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font: inherit;            /* ikuti font bawaan tema */
  color: inherit;           /* ikuti warna teks default */
}

#abt-hero .abt-points li,
#abt-points.abt-points li{
  position: relative;
  padding-left: 32px;       /* ruang untuk ikon di kiri */
  margin: 10px 0;
  line-height: 1.6;
}

/* Double-check merah (SVG inline via data-URI) */
#abt-hero .abt-points li::before,
#abt-points.abt-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;               /* selaraskan vertikal ke teks */
  width: 22px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: 22px 14px;
  /* SVG: dua centang merah */
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='22' height='14' viewBox='0 0 22 14'>\
  <path d='M2 7l3 3 5-5' fill='none' stroke='%23E54545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/>\
  <path d='M10 7l3 3 7-7' fill='none' stroke='%23E54545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>");
}

/* Jika halaman punya tema dark atau section merah, kita jaga kontras */
@media (prefers-color-scheme: dark){
  #abt-hero .abt-points li,
  #abt-points.abt-points li{ color: inherit; }
}

/* Opsional: fokus keyboard untuk aksesibilitas */
#abt-offer .abt-card:focus-within,
#abt-offer .abt-card:focus{
  outline: 2px solid var(--abt-red, #E54545);
  outline-offset: 2px;
}
/* ===== LAYANAN BOXES - FITRI ===== */

.layanan-description {
  text-align: justify;
}
.layanan-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.layanan-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.layanan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.layanan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== PERBAIKAN TEKS DAN TOMBOL ===== */
.layanan-text {
  padding: 1.5rem 2rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem; /* jarak antar elemen biar lebih seimbang */
}

.layanan-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 0.5rem; /* sebelumnya 1.5rem biar tombol lebih dekat */
}

.btn-hubungi {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 0.3rem; /* naikkan tombol sedikit */
}

.btn-hubungi:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(219, 52, 52, 0.4);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
}

/* ===== PERBAIKAN GAMBAR ===== */
.layanan-img {
  height: 235px; /* sedikit lebih tinggi agar gambar tidak terpotong */
  overflow: hidden;
  position: relative;
}

.layanan-img img {
  background: #D3D3D3;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ubah dari cover ke contain agar gambar tidak terpotong */
  transition: transform 0.3s ease;
}

.layanan-card:hover .layanan-img img {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .layanan-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .layanan-card {
    margin: 0 auto;
    max-width: 400px;
  }
  
  .layanan-text {
    padding: 1.5rem;
  }
  
  .layanan-text h3 {
    font-size: 1.5rem;
  }

  .layanan-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .layanan-boxes {
    grid-template-columns: 1fr;
  }
  
  .layanan-text {
    padding: 1rem;
  }

  .layanan-img {
    height: 180px;
  }
}

/* ===== PRODUCTS SECTION - FITRI ===== */
.products.section {
  padding: 60px 0;
}

.product-sidebar {
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  background: #f8f9fa;
  min-height: 50px;
}

.product-item:hover {
  background: #e9ecef;
  transform: translateX(3px);
}

.product-item.active {
  background: white;
  border-color: #e74c3c;
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.15);
}

.product-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

.product-info p {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
}

.product-detail {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  min-height: 500px;
}

.product-content {
  display: none;
}

.product-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-content h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.product-note {
  background: #f8f9fa;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #e74c3c;
  margin-bottom: 2rem;
  display: flex;         
  align-items: center;    
}

.product-note p {
  text-align: justify;
  margin: 0;   
}

.product-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

.product-description {
  padding: 1rem;
}

.product-description h5 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 0.5rem;
}

.product-description p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  text-align: justify;
}

.product-specs {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font: inherit;
  color: inherit;
}

.product-specs li {
  position: relative;
  padding-left: 25px;       
  margin: 8px 0;        
  line-height: 1.5;        
  color: #555;
  font-size: 0.9rem;       
}

.product-specs li::before,
.product-specs li::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #E54545;
  position: absolute;
  font-size: 14px;
}

.product-specs li::before {
  content: "\f00c";
  left: 0;
  top: 0;
  text-shadow: 
    1px 0 0 white,
    -1px 0 0 white,
    0 1px 0 white,
    0 -1px 0 white;
}

.product-specs li::after {
  content: "\f00c";
  left: 4px;
  top: 0;
  text-shadow: 
    1px 0 0 white,
    -1px 0 0 white,
    0 1px 0 white,
    0 -1px 0 white;
}

.product-tags {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.product-tags strong {
  font-size: 0.8rem;
  color: #2c3e50;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tags-content {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  text-align: justify;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.product-features li i {
  color: #e74c3c;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

.product-features strong {
  color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
  .product-sidebar {
    position: static;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
  }
  
  .product-detail {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .product-item {
    padding: 0.7rem;
    min-height: 45px;
  }
  
  .product-info h4 {
    font-size: 0.9rem;
  }
  
  .product-image-container {
    height: 250px;
    margin-bottom: 1.5rem;
  }
  
  .product-description {
    padding: 0;
  }
}

/* contact - fitri */
/* TINGGI SAMA UNTUK MAP DAN FORM */
#contact .col-lg-6 {
  display: flex;
  flex-direction: column;
}

#contact .col-lg-6 > * {
  flex: 1;
  min-height: 500px;
}

/* Pastikan form mengisi tinggi penuh */
.php-email-form {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.php-email-form .row.gy-4 {
  flex: 1;
}

/* Textarea mengisi sisa ruang */
.php-email-form textarea.form-control {
  flex: 1;
  min-height: 150px;
}

/* Responsive - hapus tinggi di mobile */
@media (max-width: 768px) {
  .col-lg-6 > * {
    min-height: auto;
  }
  
  .php-email-form {
    height: auto;
  }
  
  .php-email-form textarea.form-control {
    flex: none;
  }
}

.workshop-item {
  margin-left: 40px; /* ← Geser ke kanan 20px */
}

#contact.contact.section {
  margin-top: -30px; /* ← Kurangi jarak dari section alamat */
  padding-top: 20px; /* ← Sesuaikan padding atas */
}
/* Form Contact Styles */
.php-email-form .form-control {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px !important; /* ← Tambahkan !important */
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 15px;
}

/* Pastikan semua jenis input memiliki border radius */
.php-email-form input[type="text"],
.php-email-form input[type="email"],
.php-email-form input[type="tel"],
.php-email-form input[name="name"],
.php-email-form input[name="company"] {
  border-radius: 8px !important;
}

.php-email-form .form-control:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
  outline: none;
  border-radius: 8px !important; /* ← Juga untuk state focus */
}

.php-email-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  border-radius: 8px !important;
}

.php-email-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
  border-radius: 8px !important;
}

/* Target spesifik untuk textarea pesan */
.php-email-form textarea[name="message"] {
  border-radius: 8px !important;
}

.php-email-form .col-md-12:nth-child(n+2):nth-child(-n+4) {
  margin-top: 5px;
  margin-bottom: 5px;
}

#g-recaptcha {
  display: flex;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.recaptcha-error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
  display: none;
}

/* Submit Button */
.php-email-form button[type="submit"] {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.php-email-form button[type="submit"]:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.php-email-form button[type="submit"]:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading state */
.php-email-form button[type="submit"].loading {
  position: relative;
  color: transparent;
}

.php-email-form button[type="submit"].loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s ease-in-out infinite;
}

.loading, .error-message, .sent-message {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

input, textarea, select {
  border-radius: 8px !important;
}

/* Responsive */
@media (max-width: 768px) {
  .php-email-form .form-control {
    font-size: 16px; /* Prevent zoom on iOS */
  }
 
  /* Adjust reCAPTCHA for mobile */
  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
  }
  
  .php-email-form button[type="submit"] {
    padding: 12px 30px;
  }
  
  /* Pastikan border radius tetap di mobile */
  .php-email-form .form-control,
  .php-email-form input[type="text"],
  .php-email-form input[type="email"],
  .php-email-form input[type="tel"],
  .php-email-form textarea,
  .php-email-form select {
    border-radius: 8px !important;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.8);
    transform-origin: center;
  }
}

.alert {
  padding: 12px 15px;
  border-radius: 6px;
  margin-top: 15px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
