@font-face {
    font-family: 'Inter';
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3Fwr0a6qtzI5FwrObw.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}


@font-face {
    font-family: 'Helvetica Neue';
    src: local('HelveticaNeue-Light'),
         local('Helvetica Neue Light'),
         local('HelveticaNeueLTStd-Lt');
    font-weight: 300;
    font-style: normal;
}

*{
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Helvetica Neue','Helvetica Neue Light';
    background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #5C0302;
}

.small-guide p{
    font-size: 12px;
    color: #5C0302;
}

.small-guide span{
    font-weight: 700;
}

.small-guide a{
    text-decoration: none;
    color: #5C0302;
}

.bg-headfoot{
    background-color: #181818;
}

.btn{
    background-color: #9f0200;
    border-radius: 20px;
    padding: 10px;
    border: none;
    color: #f5f5f5;
}

.btn:hover{
    color: #5C0302;
    background-color: #f5f5f5;
}

.nav-link{
    color: #f5f5f5;
}


.bg-img {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../assets/images/hero.jpg'); /* adjust path */
    background-size: cover;
    background-position: center;
    height: 800px; /* or 600px, depending on design */
    width: 100%;
    position: relative; /* needed for absolutely positioned .bg-text */
}

.bg-text {
    text-align: center;
    position: absolute;
    top: 35%;
    color: #f5f5f5;
    font-weight: 100px;
    font-size: 18px;
}


/* Hero text */
.bg-text h1 {
    font-size: 5rem;       /* make it larger */ 
    margin-bottom: 70px;
    color: #f5f5f5;
}

/* Hero button */
.bg-text .btn-hero {
    background-color: rgba(255, 255, 255, 0.1); /* transparent with opacity */
    border: 1px solid #f5f5f5;                 /* white lineart */
    color: #f5f5f5;                            /* white text */
    padding: 12px 32px;
    border-radius: 30px;                       /* rounded edges */
    font-size: 14px;
    transition: all 0.3s ease;                 /* smooth hover effect */
}

/* Hover effect */
.bg-text .btn-hero:hover {
    background-color: #f5f5f5;
    color: #9f0200;
    border-color: #f5f5f5;
}

.container .head-text{
    color: #5C0302;
    font-size: 36px;
}

.mySwiper{
    width: 100%;
    padding: 20px 0 40px;
}

.card-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Product Card */
.product-card {
  width: 16rem;
  border: none;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
  margin: auto;
  background:#fbfbfb;
  position: relative;
}

/* Title */
.product-card .card-title {
  font-family: 'Inter';
  font-size: 3rem;
  font-weight: 700;
  color: #5C0302;
  margin: 20px 0 10px;
  z-index: 1;
  position: relative;
}

/* Truck image overlapping */
.product-card .product-img {
  max-height: 200px;
  object-fit: contain;
  margin-top: -25px; /* overlap title slightly */
  z-index: 2;
  top: 40px;               /* adjust this for overlap */
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

/* Card text */
.product-card .card-text {
    
    margin-top: 90px;
  font-family: 'Helvetica Neue';
  font-size: 14px;
  color: #181818;
  padding: 0 10px 5px;
}

/* Full-width button */
.btn-product {
  display: block;
  width: 100%;
  background-color: #9f0200;
  color: #fff;
  padding: 12px 0;
  border: none;
  border-radius: 0; /* no rounded corners */
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.btn-product:hover {
  background-color: #7d0101;
  color: #f5f5f5;
}

.swiper-wrapper{
    max-width: 1100px;
    margin: 0 60px 35px;
    padding: 20px;
}

.mySwiper{
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Pagination bullets */
.mySwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #5C0302;
  opacity: 0.5;       
  transition: all 0.3s ease;
}

.mySwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #5C0302;
  transform: scale(1.2);
}


.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
  color: #5C0302;
  font-weight: bold;
  transition: color 0.3s;
  width: 20px;
  height: 20px;
  
}

.mySwiper .swiper-button-prev:hover,
.mySwiper .swiper-button-next:hover {
  color: #9f0200;
}

.text-end a{
    color: #5C0302;
    font-weight: 100;
}

.search-bar{
    background-color: #9f0200;
    padding-bottom: 100px;
    padding-top: 70px;
}


.search-title h1{
    color: #f5f5f5;
    font-size: 72px;
}

.search-body {
    color: #f5f5f5;
}

/* Compact, rounded search bar */
.custom-search-bar .form-control {
  border-radius: 30px;
  font-size: 12px;          
  padding: 8px 16px;         
  box-shadow: none;
  transition: all 0.2s ease;
}

.custom-search-bar .form-control:focus {
  border-color: #007bff;        /* highlight on focus */
}

.btn-search {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255, 255, 255, 0.1); /* transparent with opacity */
    border: 1px solid #f5f5f5;                 /* white lineart */
    color: #f5f5f5;                            /* white text */
    padding: 12px 32px;
    border-radius: 10px;                       /* rounded edges */
    font-size: 14px;
    transition: all 0.3s ease;  
}

.btn-search:hover {
  background-color: #5C0302;
  color: #f5f5f5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.our-story{

    background: linear-gradient(#f5f5f5 0%, #9f0200 20%, #9f0200 100%);
    padding-top: 70px;
    padding-bottom: 70px;
}


.story-title h5{
    font-size: 36px;
    color: #f5f5f5;
}

.story-body{
    color: #f5f5f5;
    font-size: 14px;
    padding-bottom: 50px;
}

.story-body2{
    color: #f5f5f5;
    font-size: 14px; 
}

.btn-contact{
    color: #f5f5f5;
    background-color: #181818;
    border-radius: 30px;
    margin-top: 30px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    border: none;
}

.btn-contact:hover{
    color: #5C0302;
    background-color: #f5f5f5;
}


.head-testimonial{
    color: #5C0302;
}
.testimonial-quote {
  position: relative;
  margin: 0 0 12px 0;
  font-style: italic;
  color: #5C0302;
  line-height: 1.8;
  font-size:18px ;
  padding: 20px 30px; /* give breathing space around text */
}

.name{
    color: #5C0302;
    font-size: 14px;
}

/* Open quote */
.testimonial-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: #5C0302;
}

/* Close quote */
.testimonial-quote::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: -20px;
  font-size: 48px;
  color: #5C0302;
}

.mySwiper2 .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #5C0302;
  opacity: 0.5;       
  transition: all 0.3s ease;
}

.mySwiper2 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #5C0302;
  transform: scale(1.2);
}


.mySwiper2 .swiper-button-prev,
.mySwiper2 .swiper-button-next {
  color: #5C0302;
  font-weight: bold;
  transition: color 0.3s;
  width: 20px;
  height: 20px;
  
}

.mySwiper2 .swiper-button-prev:hover,
.mySwiper2 .swiper-button-next:hover {
  color: #9f0200;
}

.btn-hubungi{
    font-size: 14px;
    color: #f5f5f5;
    background-color: #9f0200;
    border-radius: 30px;
    margin-top: 30px;
    padding: 12px 32px;
    transition: all 0.3s ease;
    border: none;
}

.btn-hubungi:hover{
    border:1px solid #5C0302;
    color: #5C0302;
    background-color: #f5f5f5;
}

.hubungi-text {
    color: #5C0302;
    font-size: 14px;
}

.form-label{
    color: #5C0302;
    font-size: 14px;
}

.footer h6 {
    font-family: 'Inter';
    font-weight: 300;
    color: #f5f5f5;
    margin-bottom: 8px;
    font-size: 14px;

}

.footer ul li{
    margin-bottom: 4px;
    line-height: 0.5;
}

.footer ul{
    padding-left: 0;
}

.list-unstyled li a{
    color: #f5f5f5;
    font-size: 9px;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px; /* optional, makes corners rounded */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.temukan-kami {
  list-style: none;     
  padding-left: 0;     
  margin-left: 0;      
}

.temukan-kami li {
  margin-bottom: 8px;   
  font-size: 18px;
  color: #5C0302;         
}

.temukan-kami i {
  margin-right: 6px;   
  color: #5C0302;     
}

.katalog-produk{
    color: #5C0302;
}

.katalog-produk p{
    font-size: 12px;
    margin-bottom: 0;
}

.katalog-produk h4{
    margin-bottom: 20px;
}

.katalog-produk a{
    text-decoration: none;
    color: #5C0302;
}

.katalog-produk img{
    margin-bottom: 20px;
}

.btn-search-bar {
    display: inline-flex;
    justify-content: center;
    gap: 0.4rem;
    background-color: #9f0200;               /* white lineart */
    color: #f5f5f5;                          
    border-radius: 10px;                       /* rounded edges */
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;

}

.btn-search-bar:hover {
  background-color: #f5f5f5;
  color: #5C0302;
  border: 1px solid #5C0302;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

 .thumbs {
    width: 90px; /* narrow strip */
    margin-right: 15px;
  }

  .thumb-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: border 0.3s;
  }

  .thumb-img.active {
    border: 2px solid #9f0200; /* highlight active thumbnail */
  }

  .big-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
  }

.detail-product p{
    font-size: 12px;
    margin-bottom: 0;
    color: #5C0302;
}

.detail-product h2{
    margin-bottom: 20px;
    font-size: 36px;
}

  /* Remove background, borders, and shadows */
.seamless-accordion .accordion-item {
  border: none;
  background: none;
}

/* Remove border + background from accordion items */
.seamless-accordion .accordion-item {
  border: none !important;
  background: transparent !important;
}

/* Target only the specific accordion to avoid global side effects */
.seamless-accordion,
.seamless-accordion .accordion-item,
.seamless-accordion .accordion-button,
.seamless-accordion .accordion-button:focus,
.seamless-accordion .accordion-button:not(.collapsed),
.seamless-accordion .accordion-body,
.seamless-accordion .accordion-collapse {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Remove the default rounded container gap added by Bootstrap */
.seamless-accordion .accordion-item {
  margin: 0 !important;
  padding: 0 !important;
}

/* Make the header look like plain text */
.seamless-accordion .accordion-button {
  padding: 0 !important;            /* remove button box padding */
  height: auto !important;
  color: #5C0302;
  font-weight: 500;
  font-size: 14px;
  display: block;
}

/* Remove focus outline and shadow */
.seamless-accordion .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Optional: hide the chevron/arrow on the right entirely */
.seamless-accordion .accordion-button::after {
    display: inline-block !important; /* make it show again */
  color: #5C0302;                  /* match your theme */
  transform: scale(0.9);
}

/* Body spacing — small vertical breathing room */
.seamless-accordion .accordion-body {
  padding: 0.5rem 0 0.75rem 0 !important;
  color: #5C0302;
}

/* If you want a subtle divider between sections (optional) */
.seamless-accordion .accordion-item + .accordion-item {
  border-top: 2px solid rgba(0,0,0,0.06); /* or remove if you want zero divider */
}

.seamless-accordion .accordion-button {
  padding: 0.25rem 0 !important;   /* minimal spacing */
  color: #5C0302;
  font-family: 'Inter';
  font-size: 14px;
  display: flex;
  justify-content: space-between; /* pushes chevron to the right */
}


.seamless-accordion .accordion-body p{
    font-size: 14px; 
    margin-bottom: 20px;
}

.seamless-accordion .accordion-body ul li{
    list-style: none;  
    font-size: 14px;
    padding-left: 0;
    margin-left: 0;
}