:root {

--primary-color: #000000;
--secondary-color: #FFFFFF;
--accent-color: 	#FFA500; 
--light-gray: #F5F5F5;
--dark-gray: #333333;
--category-bg: #EAEAEA; 
--transition: all 0.3s ease;
}

/* Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
line-height: 1.6;
color: var(--dark-gray);
overflow-x: hidden;
}

h1, h2, h3, h4 {
font-family: 'Playfair Display', serif;
font-weight: 700;
margin-bottom: 1rem;

}

a {
text-decoration: none;
}
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

/* Buttons */
.btn {
padding-left: 30px; 
padding-right: 30px;    
margin-left: -5px;
margin-right: -5px;
display: inline-block;
padding: 8px 15px;
background-color: var(--accent-color);
color: var(--primary-color);
border-radius: 15px;
font-weight: 600;
transition: var(--transition);
cursor: pointer;
margin: 1px 5px;
}

.btn:hover {
background-color: var(--primary-color);
color: var(--secondary-color);
transform: translateY(-3px); 

}

.btn-outline {
background-color: transparent;
border: 2px solid var(--accent-color);
color: var(--accent-color);

}
.btn-outline:hover {
background-color: var(--accent-color);
color: var(--primary-color);
}

/* Sections & Titles */
section {
padding: 80px 0;
}

.section-title {
text-align: center;
margin-bottom: 50px;
position: relative;
font-size: 2.5rem;

}
.section-title:after {
content: '';
display: block;
width: 80px;
height: 3px;
background-color: var(--accent-color);
margin: 15px auto 0;

}

/* HEADER STYLES */

header {

position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: var(--transition);

}

header.scrolled {
padding: 10px 0;
background-color: rgb(255 255 255 / 24%);

}

.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;

}

.logo-text {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
font-weight: 750;
color: var(--primary-color);

}
.logo-text span {
color: var(--accent-color);
}


.nav-menu {

display: flex;
list-style: none;

}

.nav-menu li {
margin-left: 30px;

}

.nav-menu a {
text-decoration: none;
color: var(--primary-color);
font-weight: 500;
position: relative;
transition: var(--transition);

}

.nav-menu a:hover:after {
width: 100%;

}

.nav-menu a:after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-color);
transition: var(--transition);

}

.hamburger {
display: none;
cursor: pointer;
}

.bar {
display: block;
width: 25px;
height: 3px;
margin: 5px auto;
background-color: var(--primary-color);
transition: var(--transition);

}

/* Hero Section */

.hero {
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('fp/souvenir\ cn.png');
background-size: contain;
background-position: center;
color: var(--secondary-color);
display: flex;
align-items: center;
text-align: center;
}

.hero-content {
max-width: 800px;
margin: 0 auto;

}

.hero-title {
font-size: 3.5rem;
margin-bottom: 20px;


}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 30px;
color: var(--accent-color);

}

.hero-description {
margin-bottom: 40px;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 1s forwards 1ms;

}

.hero-btn {
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 1s forwards 1ms;

}

@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);

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

}

/* About Section */

.about-content {
display: flex;
align-items: center;
gap: 50px;
}

.about-image img {
width: 100%;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* KATEGORI UTAMA (Home Page Grid) */
.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;

}

.category-card {
text-decoration: none;
color: var(--secondary-color);
overflow: hidden;
position: relative;
text-align: left;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 8px;

}

.category-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category-card img {
width: 100%;
height: 300px;
object-fit: cover;
transition: transform 0.5s ease;
border-radius: 8px;

}
.category-card h3 {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
z-index: 5;
font-size: 1.5rem;
color: var(--secondary-color);
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
width: 90%;

}
.category-card-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
z-index: 2;
transition: background 0.5s ease;
border-radius: 8px;

}
.category-card:hover .category-card-overlay {
background: rgba(0, 0, 0, 0.6);
}

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

}

 /* RESPONSIVE FIXES (KATEGORI)*/

@media (max-width: 576px) {
    
    /* 1. KATEGORI UTAMA (Grid) */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 2. CARD KATEGORI */
    .category-card img {
        height: 180px; 
    }

    /* 3. JUDUL KATEGORI */
    .category-card h3 {
        
        bottom: 20px; 
        font-size: 1.2rem; 
        width: 100%; 
        transform: none; 
        left: 0;
        padding: 0 10px; 
        text-align: center; 
    }
}



/* --- TAMPILAN PRODUCT LIST- */

/* === FILTER PRODUK (DESKTOP & MOBILE) === */
.filter-section {
  width: 100%;
  margin-bottom: 20px;
}

/* === Tombol Filter === */
.filter-toggle-btn {
  display: none; /* hanya muncul di mobile */
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  transition: background 0.3s ease;
}

.filter-toggle-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* === Kontainer Filter === */
.filter-content-wrapper {
  display: block;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* === Filter List (Desktop: Horizontal Padat) === */
.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-list li {
  list-style: none;
}

.filter-list a {
  display: inline-block;
  text-align: center;
  background-color: var(--light-gray);
  color: var(--dark-gray);
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-list a:hover,
.filter-list li.active a {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
}

/* === Layout Container === */
.product-listing-hero {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: var(--light-gray);
}

.product-list-page {
  padding-top: 20px;
  background-color: var(--light-gray);
  padding-bottom: 40px;
}

.product-list-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

/* === Grid Produk === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}
/* Pastikan judul produk di halaman product-list berwarna hitam */
.product-card .product-title {
  color: var(--primary-color); /* Warna hitam sesuai tema */
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}

/* Hilangkan efek warna link biru saat hover */
.product-card a {
  color: inherit;
  text-decoration: none;
}
.product-card a:hover .product-title {
  color: var(--accent-color); /* opsional: efek oranye saat hover */
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card .product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* rasio 1:1 */
  overflow: hidden;
}

.product-card img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card .product-info {
  padding: 15px 20px 20px;
  text-align: left;
}

.product-card .product-description {
  color: #888;
  font-size: 0.9rem;
}

/* Tombol tambah ke keranjang */
.add-to-cart-btn {
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  opacity: 1;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Tombol filter aktif di mobile */
  .filter-toggle-btn {
    display: flex;
  }

  /* Filter tersembunyi secara default */
  .filter-content-wrapper {
    display: none;
    margin-top: 10px;
    padding: 10px;
  }

  .filter-content-wrapper.active {
    display: block;
  }

  /* Grid filter rapih 2 kolom */
  .filter-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 10px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .filter-list li {
    width: 100%;
  }

  .filter-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
    transition: var(--transition);
  }

  .filter-list a:hover,
  .filter-list li.active a {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card img {
    height: 150px;
    border-radius: 8px 8px 0 0;
  }

  .product-card h3 {
    font-size: 1rem;
  }
}


/* RELATED PRODUCTS SECTION (Di product-detail)*/

.related-products-section {
    padding: 60px 0 80px;
    background-color: var(--light-gray);
}

.related-products-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-gray);
}


.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px;
}


/* --- RESPONSIVE FIXES untuk Produk Rekomendasi --- */
@media (max-width: 768px) {
    .related-products-section {
        padding: 40px 0;
    }
    .related-products-section .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-products-grid .product-card {
        display: block; 
    }
    .related-products-grid .product-card img {
        height: 150px; 
        border-radius: 8px 8px 0 0;
    }
}

/* TAMPILAN PRODUCT DETAIL */

.product-detail-page {
padding-top: 70px;
padding-bottom: 80px;

}
.detail-grid {
display: grid;

grid-template-columns: 1fr;
padding: 0 15px;
}

/* Galeri Gambar */
.product-gallery {
/* position: sticky; */

top: 100px;

}
.main-image {
padding-left: 30px; 
padding-right: 30px;
margin-left: -50px;
margin-right: -50px;
height: 290px;
position: relative;
overflow: hidden;
margin-bottom: 15px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tambahan untuk Thumbnail (Pose Foto) - Wajib ada */

.main-image img {
width: 100%;
height: 100%;
object-fit: contain;
}

.thumbnail-images {

display: flex;
gap: 10px;
justify-content: flex-start;
flex-wrap: wrap;

}

.thumbnail-images img {

/* Ukuran yang sama untuk desktop dan mobile */

width: 70px;
height: 70px;
object-fit: cover;
border: 2px solid transparent;
border-radius: 4px;
cursor: pointer;
transition: var(--transition);

}

.thumbnail-images img.active {

border-color: var(--accent-color);

}

/* Info Detail Produk */
.product-info-detail h1 {
font-size: 1.6rem;
margin-bottom: 2px;
}

.product-detail-subtitle {
font-size: 1.2rem;
margin-top: 15px;
font-weight: 700;
color: var(--primary-color);

}

.product-meta ul {
list-style: none;
padding-left: 0;
margin-top: 10px;
margin-bottom: 25px;
}

.product-meta li {
font-size: 1rem;
margin-bottom: 5px;

}



/* Kontak Chat */

.sales-contact {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 5px;
border-top: 1px solid #eee;
padding-top: 10px;

}

.contact-card {
display: flex;
align-items: center;
gap: 10px;
background-color: #f7f7f7; 
padding: 5px;
border-radius: 5px;
box-shadow: 0 2px 5=px rgba(0, 0, 0, 0.05);
padding-left: 30px; 
padding-right: 30px;
margin-left: -50px;
margin-right: -50px;

}

.contact-card img {

width: 70px;
height: 70px;
border-radius: 30%;
object-fit: cover;

}

.contact-card .name {

display: block;
font-weight: 300;

}

.contact-card .online {

color: #25d366;
font-size: 0.9rem;
font-weight: 500;
margin-left: 5px;

}

.btn-chat {

background-color: #25d366;
color: var(--secondary-color);
padding: 1px 15px;
margin-top: 2px;

}

.btn-chat:hover {

background-color: #1aa04e;
color: var(--secondary-color);

}

.product-category-link {

font-size: 0.9rem;
color: #666;

}

.product-category-link a {

color: var(--primary-color);
font-weight: 500;

}

.product-category-link a:hover {

color: var(--accent-color);
}
/* === REKOMENDASI PRODUK (RESPONSIVE & COMPACT) === */
.related-products-section {
  padding: 50px 0 70px;
  background-color: var(--light-gray);
}

.related-products-section .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--dark-gray);
}

/* === Tampilan Desktop (Grid 4 Kolom) === */
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.related-products-grid .product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.related-products-grid .product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.related-products-grid .product-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-products-grid .product-info {
  padding: 10px 15px 15px;
}

.related-products-grid .product-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.related-products-grid .product-description {
  font-size: 0.85rem;
  color: #777;
}

/* === MOBILE: 1 PRODUK / SWIPE KESAMPING === */
@media (max-width: 768px) {
  .related-products-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .related-products-grid::-webkit-scrollbar {
    display: none; /* sembunyikan scrollbar */
  }

  .related-products-grid .product-card {
    min-width: 75%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .related-products-grid .product-image img {
    height: 160px;
  }

  .related-products-grid .product-info h3 {
    font-size: 0.95rem;
  }
}
/* --- FIX GARIS PUTIH DI BAWAH FOOTER --- */
html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff; /* atau var(--primary-color) jika ingin gelap total */
}

footer {
  margin-bottom: 0;
  padding-bottom: 30px; /* tetap ada ruang nyaman */
}

.product-detail-page,
.related-products-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Pastikan tidak ada elemen kosong di bawah footer */
body > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}




/* FOOTER */

footer {
background-color: var(--primary-color);
color: var(--secondary-color);
padding: 50px 0 20px;

}

.footer-container {

display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 30px;
margin-bottom: 30px;

}

.footer-col {

flex: 1;
min-width: 250px;

}

.footer-col h4 {

margin-bottom: 20px;
position: relative;
padding-bottom: 10px;

}

.footer-col h4:after {

content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 2px;
background-color: var(--accent-color);

}

.footer-links {

list-style: none;
}

.footer-links li {

margin-bottom: 10px;
}

.footer-links a {

color: #ccc;
text-decoration: none;
transition: var(--transition);
}

.footer-links a:hover {

color: var(--accent-color);
padding-left: 5px;

}

.social-links {

display: flex;
gap: 15px;
margin-top: 20px;

}

.social-links a {

display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
color: var(--secondary-color);
border-radius: 50%;
transition: var(--transition);

}

.social-links a:hover {

background-color: var(--accent-color);
color: var(--primary-color);

}

.contact-footer-col {

font-size: 0.95rem;
}

.contact-footer-col .contact-info-item {

display: flex;
align-items: flex-start;
margin-bottom: 10px;

}

.contact-footer-col .contact-info-item i {

color: var(--accent-color);
margin-right: 10px;
min-width: 20px;
text-align: center;
font-size: 1.1em;

}

.copyright {

text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.9rem;
color: #ccc;

}


/* FLOATING WHATSAPP */

.whatsapp-float {

position: fixed;
width: 50px;
height: 50px;
bottom: 40px;
right: 40px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 3px #999;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.whatsapp-float:hover {
transform: scale(1.1);
box-shadow: 2px 2px 8px #666;

}

.chat-bubble {
position: absolute;
right: 50px;
max-width: 200px;
top: 50%;
transform: translateY(-50%);
background-color: var(--secondary-color);
color: var(--dark-gray);
padding: 8px 12px;
border-radius: 6px;
font-size: 0.9rem;
line-height: 1.4;
font-weight: 500;
white-space: nowrap;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
animation: pulse 2s infinite;

}

.chat-bubble::after {
content: '';
position: absolute;
top: 50%;
right: -5px;
transform: translateY(-50%) rotate(45deg);
width: 10px;
height: 10px;
background-color: var(--secondary-color);

}

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


/* Responsive Styles */
@media (max-width: 768px) {
.about-content {
flex-direction: column;
}

.footer-container {
flex-direction: column;
gap: 20px;
}
.footer-col {
min-width: 100%;
}

/* List & Detail Responsive */
.product-list-container {
flex-direction: column;
}

.sidebar {
width: 100%;
padding: 0;
}

}
@media (max-width: 768px) {
/* Hamburger Menu */
.hamburger { display: block; }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-menu {

position: fixed;
left: -100%;
top: px;
gap: 0;
flex-direction: column;
background-color: var(--secondary-color);
width: 100%;
text-align: center;
transition: 0.3s;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
padding: 20px 0;

}

.nav-menu.active { left: 0; }
.nav-menu li { margin: 15px 0; }

/* Hero */

.hero-title { font-size: 2.5rem; }
.hero-subtitle { font-size: 1.2rem; }

/* WA Float */

.whatsapp-float {
position: fixed;
width: 40px;
height: 40px;
bottom: 40px;
right: 40px;
font-size: 20px;
z-index: 1000;

}


/* List Page - Sidebar */

.filter-list {

display: flex;
flex-wrap: wrap;
gap: 10px;
padding: 10px;

}

.filter-list li {

flex-grow: 1;
margin-bottom: 0;
min-width: 120px;

}

.filter-list a {

padding: 8px 10px;
text-align: center;
margin-bottom: 0;

}

}
/* Styling dasar untuk section dan judul */

.partners-section {
padding: 40px 0;
text-align: center;

}

.section-title {

font-size: 2.5em;
margin-bottom: 40px;
color: #333;

}

/* Container untuk karusel logo */

.logo-carousel {

display: flex; 
overflow: hidden; 
margin-left: -30px;
margin-right: -30px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

/* Styling untuk setiap slider (set logo) */

.logo-slider {

display: flex;
animation: scroll 14s linear infinite; 
}



/* Styling untuk gambar logo */

.logo-slider img {

height: 120px; /* Sesuaikan ukuran tinggi logo */
margin: 0 10px; /* Jarak antar logo */
transition: filter 0.3s ease; /* Transisi saat di-hover */

}

/* Efek saat kursor diarahkan ke logo */

.logo-slider img:hover {

filter: grayscale(0%); 
transform: scale(1.3); 
}

@keyframes scroll {
0% {
transform: translateX(0); 
}
100% {
transform: translateX(-54%); 
}
}

/* Media query untuk tampilan mobile */

@media (max-width: 768px) {
.section-title {
font-size: 1.86em;
}

.logo-slider img {
height: 60px; /* Ukuran logo lebih kecil di mobile */
}

}

.features-section {

background-color: var(--primary-color); 
color: var(--secondary-color); 

/* Padding Ramping */

padding: 60px 0 100px;
position: relative;
text-align: center;

/* Efek melengkung di bagian bawah */

clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.features-section .container {

padding-top: 20px; 
}

.features-section .section-title {
color: var(--secondary-color);
font-size: 1.9rem; 
margin-bottom: 40px; 
}

.features-section .section-title .accent-text {
color: var(--accent-color);
}

.features-section .section-title:after {
display: none;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
gap: 30px; 
}

.feature-card {
background-color: transparent;
padding: 15px; 
text-align: center;
}

/* Icon Styling */
.icon-wrapper {
width: 120px; 
height: 120px;
background-color: var(--secondary-color);
border-radius: 50%;
margin: 0 auto 15px; 
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 
}

.icon-wrapper i {
font-size: 3rem; 
color: var(--accent-color); 
}

.feature-card h3 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 1.3rem; 
color: var(--accent-color); 
margin-bottom: 10px;
}

.feature-card p {
font-size: 0.95rem; 
line-height: 1.6;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
.features-section {
padding: 40px 0 80px; 
clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%); 

}

/* Section foto */
}
.account-section {
  text-align: center;
  padding: 10px 10px;
}

.account-section h2 {
  font-size: 2rem;
}

.sub-text {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #444;
}

.bold-text {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #fff;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: contain; 
  border-radius: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 2px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ff8c34;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .slide img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .slide img {
    height: 220px;
  }
}




/* GOOGLE RATING SECTION STYLES */
.google-rating-section {
    padding: 80px 0;
    background-color: var(--secondary-color); 
}

.google-rating-section .section-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- Rating Header (Skor Rata-rata dan Tombol) --- */
.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.average-rating .score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

/* Styling Bintang (Umum) */
.stars-display {
    color: #FFC107; 
    font-size: 1.2rem;
}
.stars-display.small {
    font-size: 0.9rem;
}

.average-rating .count {
    font-size: 0.9rem;
    color: #666;
}

.btn-primary-review {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px; 
}
.btn-primary-review:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* --- Review Carousel (Gulir) --- */
.reviews-carousel {
    width: 100%;
    overflow-x: scroll; 
    overflow-y: hidden;
    white-space: nowrap; 
    padding-bottom: 20px; 
    -webkit-overflow-scrolling: touch; /* Gulir lebih halus di iOS */
    scroll-snap-type: x mandatory; /* Snap ke setiap kartu */
}

/* Hilangkan scrollbar */
.reviews-carousel::-webkit-scrollbar {
    display: none;
}
.reviews-carousel {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.reviews-track {
    display: inline-flex; 
    padding-top: 10px;
}

.review-card {
    display: inline-block;
    width: 380px; 
    min-height: 200px; 
    background-color: var(--light-gray);
    border: 1px solid #ddd;
    padding: 20px;
    margin-right: 20px;
    border-radius: 8px;
    vertical-align: top;
    white-space: normal; 
    scroll-snap-align: start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.user-name {
    font-weight: 600;
    color: var(--primary-color);
}

.rating-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.review-date {
    font-size: 0.8rem;
    color: #999;
}
.review-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.5;
}


/* RESPONSIVE STYLES */

/* Media Query untuk Tablet/Layar Sedang */
@media (max-width: 992px) {
    .review-card {
        width: 300px; 
    }
}

/* Media Query untuk Handphone */
@media (max-width: 576px) {
    .google-rating-section {
        padding: 40px 0;
    }
    .google-rating-section .section-title {
        font-size: 2rem;
    }

    /* Header Rating */
    .rating-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .average-rating {
        /* Memastikan elemen-elemen berada di bawah satu sama lain */
        flex-wrap: wrap; 
        gap: 10px;
    }
    .average-rating .score {
        font-size: 2.5rem;
    }
    .stars-display {
        font-size: 1rem;
    }
    .btn-primary-review {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* Carousel */
    .review-card {
        
        width: calc(100vw - 60px); 
        margin-right: 15px;
        min-height: 180px;
    }
    
    .container {
        padding: 0 15px; 
    }
}


/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.faq-container {
    max-width: 900px; /* Optimal untuk desktop */
    margin: 40px auto 0;
    padding: 0 15px; /* Padding agar tidak mentok di HP */
}

.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* Responsif Font Size */
.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem; /* Menggunakan rem agar skalabel */
    font-weight: 600;
    color: #222;
    margin: 0;
    padding-right: 15px;
    line-height: 1.4;
}

.faq-question i {
    font-size: 0.9rem;
    color: #888;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: #fff;
}

.faq-answer p {
    padding: 0 25px 20px 25px;
    color: #555;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

/* Active State */
.faq-item.active {
    border-color: #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #333;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Memberikan ruang lebih untuk jawaban panjang */
}

/* --- MEDIA QUERIES (RESPONSIF HP) --- */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem; /* Teks sedikit lebih kecil di HP */
    }

    .faq-answer p {
        font-size: 0.88rem;
        padding: 0 20px 15px 20px;
    }
}

/* Experience Section Styles */
.experience-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.experience-header {
    margin-bottom: 50px;
    position: relative;
}

.experience-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.orange-text {
    color: #ff8c00; /* Warna Orange */
}

.underline {
    width: 60px;
    height: 4px;
    background: #ff8c00;
    margin: 10px auto;
    border-radius: 2px;
}

/* Grid System */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Kolom Desktop */
    gap: 25px;
    padding: 0 15px;
}

.experience-box {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid #ff8c00; /* Border Orange Default */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.icon-box {
    font-size: 40px;
    color: #ff8c00;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.experience-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff8c00;
    transition: all 0.4s ease;
}

.experience-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    transition: all 0.4s ease;
}

/* --- HOVER ANIMATION --- */
.experience-box:hover {
    background-color: #ff8c00; /* Berubah jadi orange */
    transform: translateY(-10px); /* Melayang sedikit */
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
}

.experience-box:hover h3,
.experience-box:hover p,
.experience-box:hover .icon-box {
    color: #fff; /* Teks berubah jadi putih saat dihover */
}

/* --- RESPONSIVE SETTINGS --- */

/* Tablet (Layar Sedang) */
@media screen and (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr); /* Jadi 2 kolom */
    }
}

/* Handphone (Layar Kecil) */
@media screen and (max-width: 576px) {
    .experience-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom memanjang */
    }
    
    .experience-header h2 {
        font-size: 1.5rem;
    }
    
    .experience-box {
        padding: 30px 15px;
    }
}
/* Class tambahan untuk efek scroll di HP */
.experience-box.is-viewed {
    background-color: #ff8c00;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.3);
}

.experience-box.is-viewed h3,
.experience-box.is-viewed p,
.experience-box.is-viewed .icon-box {
    color: #fff;
}