:root {
    --brand-green: #2E6A59;
    --brand-green-light: #3a8270;
    --brand-green-dark: #1f4a3d;
}

/* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #333;
}

/* --- Container --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==================== NAVBAR ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 50;
    padding: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

header.navbar-scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* === Nav Links === */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

/* === Link utama === */
.nav-links > ul > li > a {
    text-decoration: none;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    font-size: 18px;
    padding: 8px 0;
    display: block;
    font-weight: 600;
}

.nav-links > ul > li > a:hover {
    color: var(--brand-green);
}

/* === Garis bawah saat hover === */
.nav-links > ul > li > a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-green);
    transition: width 0.3s ease;
}

.nav-links > ul > li > a:hover::after {
    width: 100%;
}


/* === Dropdown dasar === */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 240px;
    max-width: 240px; /* Tambah max-width agar tidak melebar */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

/* === Submenu dropdown positioning - SELALU KE BAWAH === */
.dropdown-submenu > .dropdown-menu {
    display: none;
    border-radius: 8px;
    position: static !important;
    margin-left: 0 !important;
    padding-left: 20px !important;
    box-shadow: none !important;
    border: none !important;
    min-width: auto !important; /* Reset min-width */
    max-width: none !important; /* Reset max-width untuk submenu */
}

/* === Item di dropdown === */
.dropdown-menu li {
    display: block;
    text-align: left;
    position: relative;
}

.dropdown-menu > li > a {
    padding: 10px 18px;
    font-size: 16px;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
    display: block;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu > li > a:hover {
    background-color: #f8f9fa;
    color: var(--brand-green);
}

/* === Submenu Wrapper (link + arrow) === */
.submenu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
    transition: background 0.3s ease;
    position: relative;
}

.submenu-wrapper:hover {
    background-color: #f8f9fa;
}

/* === Category Link === */
.category-link {
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-link:hover {
    color: var(--brand-green);
}

/* === Arrow Toggle === */
.arrow-toggle {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    user-select: none;
    border-left: 1px solid #e5e5e5;
}

.arrow-toggle:hover {
    color: var(--brand-green);
    transform: rotate(180deg);
}

/* === Active state saat submenu terbuka (mobile) === */
.dropdown-submenu.active .arrow-toggle {
    color: var(--brand-green);
    transform: rotate(180deg);
}

/* === Hover effect untuk item dengan submenu === */
.dropdown-submenu:hover > .submenu-wrapper {
    background-color: #f8f9fa;
}

/* === DESKTOP HOVER STYLES === */
@media (min-width: 769px) {
    /* Reset: Pastikan semua dropdown tersembunyi di desktop */
    .dropdown-menu {
        display: none !important;
    }
    
    /* Desktop: hover untuk level 1 */
    .nav-links > ul > li.dropdown:hover > .dropdown-menu {
        display: block !important;
    }
    
    /* Desktop: hover untuk level 2+ - HANYA TAMPIL KE BAWAH */
    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
        position: static !important;
        padding-left: 0 !important;
        margin-top: 5px;
    }
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
    .nav-links ul {
        flex-direction: column;
        gap: 10px;
    }
    
    /* PENTING: Dropdown menu di mobile harus bisa muncul */
    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        min-width: 100%;
        transform: none;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        margin-left: 0;
        padding-left: 20px;
        max-height: 150px;     
        overflow-y: auto;  
    }
    
    /* Mobile: arrow tidak punya border */
    .arrow-toggle {
        border-left: none;
    }
    
    /* Mobile: saat dropdown aktif, tampilkan menu */
    .dropdown.active > .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-submenu.active > .dropdown-menu {
        display: block !important;
    }
}

/* === Tambahan untuk Desktop === */
@media (max-width: 768px) {
    .nav-links ul {
        flex-direction: column;
        gap: 10px;
    }
    
    /* PENTING: Dropdown menu di mobile harus bisa muncul */
    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: static !important;
        margin-left: 0;
        padding-left: 20px;
        max-height: 150px;     
        overflow-y: auto;  
    }
    
    /* Mobile: arrow tidak punya border */
    .arrow-toggle {
        border-left: none;
    }
    
    /* Mobile: saat dropdown aktif, tampilkan menu */
    .dropdown.active > .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-submenu.active > .dropdown-menu {
        display: block !important;
    }
}
/* Search Box */
.search-box {
    position: relative;
    width: 250px;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border-radius: 9999px;
    border: 2px solid #e5e5e5;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(46, 106, 89, 0.1);
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-green);
    pointer-events: none;
    font-size: 16px;
}

/* Mobile Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-green);
}


/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.items-per-page {
  display: flex;
  align-items: center;
  gap: 12px;
}

.items-per-page label {
  color: #555;
  font-size: 0.9em;
  font-weight: 500;
}

.items-per-page select {
  padding: 8px 35px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  color: #333;
  font-size: 0.9em;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.items-per-page select:hover {
  border-color: var(--color-red);
}

.items-per-page select:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(176, 39, 34, 0.1);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  width: 35px;
  height: 35px;
  border: none;
  background: white;
  color: var(--color-red);
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination-btn:hover {
  background: var(--color-red);
  color: white;
}

.pagination-btn.active {
  background: var(--color-red);
  color: white;
}

.pagination-arrow {
  width: 35px;
  height: 35px;
  border: none;
  background: white;
  color: var(--color-red);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination-arrow:hover {
  background: var(--color-red);
  color: white;
}

.pagination-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-arrow:disabled:hover {
  background: white;
  color: var(--color-red);
}
/* ==================== HOME PAGE ==================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 150px 30px 80px 30px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(46, 106, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 0 0 45%;
    color: #333;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h3 {
    background-color: #fff;
    color: var(--brand-green);
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--brand-green);
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(46, 106, 89, 0.1);
}

.hero-text h3:hover,
.hero-text h3:active {
    background-color: var(--brand-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 106, 89, 0.25);
}

.hero-desc {
    font-size: 40px;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 600;
}

.hero-subtext {
    font-size: 16px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.hero-image {
    text-align: right;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* About Section (Home) */
.container-vertical {
    text-align: center;
}

.about-section {
    padding: 100px 100px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.about-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    margin: 0 auto 50px;
    line-height: 1.8;
    max-width: 900px;
}

.about-cards-horizontal-line {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: nowrap;
    margin-top: 40px;
}

.card-line {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card-line:hover {
    transform: translateY(-5px);
}

.card-line::after {
    content: "";
    display: block;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.card-line:last-child::after {
    display: none;
}

.number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 80px 50px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.why-us-left {
    flex: 1 1 250px;
}

.why-us-left h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-green);
    position: relative;
    margin-bottom: 30px;
}

.why-us-left h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), transparent);
    margin-top: 12px;
    border-radius: 2px;
}

.why-us-right {
    flex: 2 1 600px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.why-card:hover {
    background-color: var(--brand-green);
    color: #fff;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(46, 106, 89, 0.25);
    border-color: var(--brand-green-light);
}

.icon-circle {
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(46, 106, 89, 0.2);
}

.why-card:hover .icon-circle {
    background: #fff;
    color: var(--brand-green);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card-text h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
}

.card-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Product Section */
.product-section {
    background: #fff;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-section-header {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    padding: 60px 0 200px;
    position: relative;
    overflow: hidden;
}

.product-section-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    margin: 0 auto 0;
    border-radius: 2px;
}

.product-carousel-wrapper {
    padding: 60px 0 80px;
    position: relative;
     margin-top: -20%;
}

.product-images-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 80px;
    position: relative;
    z-index: 1;
    perspective: 1000px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0.6;
    transform: scale(0.85) translateY(20px);
}

/* Animation classes for smooth transitions */
.product-item.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-item.slide-in-center {
    animation: slideInCenter 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-item.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-item.slide-out-left {
    animation: slideOutLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.7);
    }
    to {
        opacity: 0.6;
        transform: translateX(0) scale(0.85) translateY(20px);
    }
}

@keyframes slideInCenter {
    from {
        opacity: 0.6;
        transform: translateX(-100px) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0.6;
        transform: translateX(-100px) scale(0.85);
    }
    to {
        opacity: 0.6;
        transform: translateX(0) scale(0.85) translateY(20px);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 0.6;
        transform: translateX(0) scale(0.85);
    }
    to {
        opacity: 0;
        transform: translateX(-100px) scale(0.7);
    }
}

/* Side items (left and right) - smaller and slightly transparent */
.product-item:nth-child(1),
.product-item:nth-child(3) {
    width: 280px;
    opacity: 0.7;
}

/* Center item (larger and prominent) */
.product-item:nth-child(2) {
    width: 380px;
    opacity: 1;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(46, 106, 89, 0.25);
}

.product-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.product-item:nth-child(1) img,
.product-item:nth-child(3) img {
    height: 280px;
}

.product-item:nth-child(2) img {
    height: 360px;
}

.product-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-item:nth-child(2):hover {
    box-shadow: 0 20px 50px rgba(46, 106, 89, 0.35);
}

.product-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(46, 106, 89, 0.95), rgba(46, 106, 89, 0.7));
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 16px;
    opacity: 0;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    backdrop-filter: blur(10px);
}

.product-item:hover .overlay {
    opacity: 1;
}

.product-item:nth-child(2) .overlay {
    font-size: 18px;
    padding: 24px 20px;
}

/* Carousel Navigation Dots */
.product-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(46, 106, 89, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background-color: rgba(46, 106, 89, 0.5);
}

.carousel-dot.active {
    background-color: var(--brand-green);
    transform: scale(1.3);
    border-color: rgba(46, 106, 89, 0.3);
}

/* ==================== ABOUT PAGE ==================== */

/* Banner Section */
.banner-img {
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-img img {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-img:hover img {
    transform: scale(1.02);
}

/* Breadcrumbs */
.breadcrumbs-section {
    text-align: center;
    margin: 40px 0;
    font-size: 20px;
    font-weight: 700;
    color: #666;
}

.breadcrumbs-section a {
    text-decoration: none;
    color: var(--brand-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumbs-section a:hover {
    color: var(--brand-green-dark);
    text-decoration: underline;
}

.breadcrumbs-section span {
    color: #333;
    font-weight: 600;
}

/* About Content Section */
.bagian-about {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: #fff;
    text-align: center;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.bagian-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bagian-about h2 {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bagian-about p {
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.9;
    font-size: 16px;
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.95);
}

/* Stats Section */
.stats-section {
    width: 100%;
}

.stats-top {
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 40px 40px;
    flex-wrap: wrap;
    text-align: center;
}

.stats-top .stats-label {
    font-size: 20px;
    font-weight: 600;
}

.bagian-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    color: var(--brand-green);
    padding: 100px 40px;
    text-align: center;
    flex-wrap: wrap;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.stats-card {
    min-width: 200px;
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(46, 106, 89, 0.15);
}

.stats-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.stats-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--brand-green);
    text-shadow: 0 2px 4px rgba(46, 106, 89, 0.1);
}

.stats-line {
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(46, 106, 89, 0.2), transparent);
    border-radius: 2px;
}

/* Feature Section */
.feature-section {
    padding: 80px 40px 100px 40px;
    text-align: center;
    background-color: #fff;
}

.feature-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-box {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(46, 106, 89, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(46, 106, 89, 0.3);
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* ==================== CONTACT PAGE ==================== */

/* Map Container */
.map-container {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    padding: 80px 40px;
}

.contact-title {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 50px;
    color: #333;
    line-height: 1.5;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form,
.contact-info {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--brand-green);
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(46, 106, 89, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 106, 89, 0.2);
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 106, 89, 0.3);
    background: linear-gradient(135deg, var(--brand-green-light) 0%, var(--brand-green) 100%);
}

.contact-form button:active {
    transform: translateY(0);
}

.contact-info {
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info h3 {
    color: var(--brand-green);
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background-color: rgba(46, 106, 89, 0.05);
    transform: translateX(5px);
}

.contact-info span {
    font-size: 20px;
    min-width: 24px;
}

/* ==================== FOOTER ==================== */

#contact {
    background: linear-gradient(to bottom, #ededed 0%, #e9ecef 100%);
    padding: 80px 0 30px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 60px;
    min-height: 170px;
}

.footer-left {
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.footer-left img {
    max-width: 300px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.footer-left img:hover {
    transform: scale(1.05);
}

.footer-center {
    text-align: left;
    margin-left: 20px;
}

.footer-center h4 {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--brand-green);
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-green);
}

.footer-center ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    line-height: 1.8;
}

.footer-center ul li a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding-left: 0;
}

.footer-center ul li a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--brand-green);
}

.footer-center ul li a:hover {
    color: var(--brand-green);
    padding-left: 20px;
}

.footer-center ul li a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-right {
    margin-left: 20px;
    text-align: left;
    line-height: 1.8;
}

.footer-right p:first-child {
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--brand-green);
    display: inline-block;
    font-size: 20px;
    color: var(--brand-green);
}

.footer-right p {
    margin: 6px 0;
    font-size: 15px;
    color: #555;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0 0 0;
    border-top: 2px solid #dee2e6;
    margin-top: 50px;
    font-size: 14px;
    color: #666;
}

/* ==================== PRODUCT CATEGORY SECTION ==================== */

/* Company Info Section */
.company-info-section {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: #fff;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.company-info-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.company-info-section p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Product Grid Section */
.product-grid-section {
    padding: 80px 40px;
    background: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #111827;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #6b7280;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto 40px;
}

/* Product Card */
.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--brand-green);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Container */
.product-image-container {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    background-color: #f3f4f6;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

.product-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 106, 89, 0.3);
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: scale(1);
}

.add-to-cart-btn:hover {
    background: var(--brand-green-dark);
    transform: scale(1.1);
}

/* Content */
.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-model {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #111827;
}

.product-badge {
    display: inline-block;
    font-size: 11px;
    color: #334f36;
    border: 1px solid var(--brand-green); 
    background-color: transparent; 
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-weight: 600;
    width: auto;
}

/* Actions / Price */
.product-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.price-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-action:hover {
    color: var(--brand-green-dark);
    gap: 8px;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: rgba(46, 106, 89, 0.05);
}

.pagination-btn.active {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover {
    border-color: #e5e7eb;
    color: #6b7280;
    background: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
}

.empty-state i {
    font-size: 64px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: #374151;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .logo img {
        height: 35px; /* Ukuran logo di mobile */
    }
    .header {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 30px !important; /* Ukuran logo di layar sangat kecil */
    }
    .header {
        padding: 10px !important;
    }
}

@media(max-width: 1024px) {
    .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    /* Sembunyikan search box dari navbar utama */
    header > .container > .search-box {
        display: none;
    }
    
    .nav-links ul {
        flex-direction: column;
        gap: 15px;
        display: none;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        position: absolute;
        top: 70px; 
        left: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    .nav-links .search-box {
        display: block !important;
        width: 100%;
        position: relative;
        margin-bottom: 10px;
        order: -1; 
    }
    
    .nav-links .search-box input {
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 120px 30px 80px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-desc {
        font-size: 32px;
    }
    
    /* About Section */
    .about-section {
        padding: 80px 40px;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-cards-horizontal-line {
        flex-direction: column;
        gap: 20px;
    }
    
    .card-line {
        background-color: rgba(255,255,255,0.15);
        padding: 25px 20px;
        border-radius: 16px;
        backdrop-filter: blur(10px);
        width: 100%;
        max-width: 100%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .card-line::after {
        display: none;
    }
    
    /* Why Us Section */
    .why-us-section {
        padding: 60px 30px;
    }
    
    .why-us-left h2 {
        font-size: 30px;
    }
    
    /* Stats Section */
    .bagian-stats {
        gap: 40px;
        padding: 60px 30px;
    }
    
    .stats-card {
        min-width: 180px;
        padding: 25px 15px;
    }
    
    .stats-number {
        font-size: 48px;
    }
    
    .stats-line {
        display: none;
    }
    
    /* Feature Section */
    .feature-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Contact Section */
    .contact-container {
        gap: 30px;
    }
    
    .contact-form,
    .contact-info {
        flex: 1 1 48%;
        padding: 30px;
    }
    
    .contact-section {
        padding: 60px 30px;
    }
    
    .contact-title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    /* Product Section - Tablet */
    .product-section-header {
        padding: 50px 0 180px;
    }
    
    .product-title {
        font-size: 30px;
    }
    
    .product-carousel-wrapper {
        padding: 50px 0 70px;
        margin-top: -20px;
    }
    
    .product-images-row {
        padding: 0 40px;
        gap: 20px;
    }
    
    .product-item:nth-child(1),
    .product-item:nth-child(3) {
        width: 220px;
    }
    
    .product-item:nth-child(2) {
        width: 320px;
    }
    
    .product-item:nth-child(1) img,
    .product-item:nth-child(3) img {
        height: 240px;
    }
    
    .product-item:nth-child(2) img {
        height: 300px;
    }
    
    .overlay {
        font-size: 14px;
        padding: 14px;
    }
    
    .product-item:nth-child(2) .overlay {
        font-size: 16px;
        padding: 18px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .nav-links a {
        font-size: 15px !important;
    }
    
    header > .container > .search-box {
        display: none !important;
    }
    
    .nav-links ul {
        top: 50px; 
    }
    
    .nav-links .search-box {
        display: block !important;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-links .search-box input {
        width: 100%;
        padding: 12px 40px 12px 15px;
        font-size: 15px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 120px 20px 60px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        width: 90%;
    }
    
    .hero-text,
    .hero-image {
        flex: 1 1 100%;
    }
    
    .hero-text h3 {
        font-size: 20px;
        padding: 10px 20px;
    }
    
    .hero-desc {
        font-size: 28px;
    }
    
    .hero-subtext {
        font-size: 15px;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 20px;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-desc {
        font-size: 15px;
    }
    
    .number {
        font-size: 36px;
    }
    
    .label {
        font-size: 13px;
    }
    
    /* Why Us Section */
    .why-us-section {
        padding: 60px 20px;
    }
    
    .why-us-left {
        text-align: center;
    }
    
    .why-us-left h2 {
        font-size: 28px;
    }

    .why-us-left h2::after {
        margin: 8px auto 0;
    }
    
    .why-card {
        padding: 20px;
        gap: 15px;
    }
    
    .icon-circle {
        min-width: 55px;
        min-height: 55px;
        font-size: 22px;
    }
    
    .card-text h3 {
        font-size: 16px;
    }
    
    .card-text p {
        font-size: 13px;
    }
    
    /* Product Section */
    .product-section-header {
        padding: 20px 0 10px;
    }
    
    .product-title {
        font-size: 26px;
    }
    
    .product-carousel-wrapper {
        padding: 40px 0 60px;
        margin-top: -30px;
    }
    
    .product-images-row {
        flex-direction: column;
        padding: 0 20px;
        gap: 20px;
    }
    
    .product-item:nth-child(1),
    .product-item:nth-child(2),
    .product-item:nth-child(3) {
        width: 100%;
        max-width: 350px;
        opacity: 1;
    }
    
    .product-item img,
    .product-item:nth-child(1) img,
    .product-item:nth-child(2) img,
    .product-item:nth-child(3) img {
        height: 280px;
    }
    
    .overlay {
        font-size: 15px;
        padding: 16px;
        opacity: 1;
        background: linear-gradient(to top, rgba(46, 106, 89, 0.9), rgba(46, 106, 89, 0.6));
    }
    
    .product-item:nth-child(2) .overlay {
        font-size: 15px;
        padding: 16px;
    }
    
    .product-carousel-dots {
        margin-top: 30px;
    }
    
    /* Banner */
    .banner-img {
        margin-top: 50px;
    }
    
    .banner-img img {
        max-height: 300px;
    }
    
    /* Breadcrumbs */
    .breadcrumbs-section {
        margin: 30px 20px;
        font-size: 14px;
    }
    
    /* About Content */
    .bagian-about {
        padding: 60px 20px;
    }
    
    .bagian-about h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .bagian-about p {
        font-size: 15px;
        max-width: 100%;
    }
    
    /* Stats Section */
    .bagian-stats {
        flex-direction: column;
        gap: 30px;
        padding: 60px 20px;
        background-color: #f8f9fa;
    }
    
    .stats-card {
        width: 100%;
        max-width: 100%;
        padding: 25px;
    }
    
    .stats-label {
        font-size: 15px;
    }
    
    .stats-number {
        font-size: 42px;
    }
    
    .stats-line {
        display: none;
    }
    
    /* Feature Section */
    .feature-section {
        padding: 60px 20px 80px;
    }
    
    .feature-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .feature-box h4 {
        font-size: 18px;
    }
    
    .feature-box p {
        font-size: 14px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-title {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .map-container {
        margin: 0 auto 40px;
        border-radius: 12px;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form,
    .contact-info {
        flex: 1 1 100%;
        padding: 25px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .contact-form button {
        padding: 12px;
        font-size: 15px;
    }
    
    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .contact-info p {
        font-size: 14px;
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .contact-info span {
        font-size: 18px;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-left {
        margin: 0;
        text-align: left;
        width: 100%;
    }

    .footer-center,
    .footer-right {
        margin: 0;
        text-align: left;
        width: 100%;
    }

    .footer-left img {
        max-width: 220px;
    }
    
    .footer-center h4,
    .footer-right p:first-child {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .footer-center ul li a,
    .footer-right p {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 25px 20px 0;
        margin-top: 40px;
        font-size: 13px;
    }
    
    /* Company Info Section - Tablet */
    .company-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .info-card:last-child {
        grid-column: 1 / -1;
    }
    
    /* Product Grid - Tablet */
    .product-grid-section {
        padding: 60px 30px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    /* Company Info Section - Mobile */
    .company-info-section {
        padding: 60px 20px;
    }
    
    .company-info-section h2 {
        font-size: 24px;
    }
    
    .company-info-section p {
        font-size: 14px;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 25px 15px;
    }
    
    .info-card h3 {
        font-size: 16px;
    }
    
    .info-card p {
        font-size: 13px;
    }
    
    /* Product Grid - Mobile */
    .product-grid-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-model {
        font-size: 14px;
    }
    
    .product-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .product-actions {
        margin-top: 5px;
        padding-top: 0px;
        border-top: 1px solid #e5e7eb;
    }
        
    .price-action {
        font-size: 13px;
    }
    
    .pagination-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-desc {
        font-size: 24px;
    }
    
    .hero-subtext {
        font-size: 14px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .why-us-left h2 {
        font-size: 24px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .bagian-about h2 {
        font-size: 20px;
    }
    
    .stats-number {
        font-size: 38px;
    }
    
    .contact-title {
        font-size: 16px;
    }
    
    .feature-box {
        padding: 25px 15px;
    }
}


/* ========================================
           PRODUCT DETAIL SECTION
           ======================================== */
.svg-container {
  display: flex;
  justify-content: flex-start;
  /* taruh di kiri */
  margin-top: 5%;
  width: 100%;
}

.svg-container svg {
  width: 40%;
  /* bisa kamu ubah sesuai kebutuhan */
  height: auto;
}
/* ========================================
   PRODUCT DETAIL SECTION - ENHANCED
   ======================================== */
.product-detail-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

/* ========================================
   PRODUCT IMAGE SIDE
   ======================================== */
.product-image-side {
    position: sticky;
    top: 100px;
    align-self: start;
}

.image-gallery-wrapper {
    display: flex;
    gap: 20px;
}

.thumbnail-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    background: #fafafa;
}

.thumbnail:hover {
    border-color: #2e6a59;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #2e6a59;
    box-shadow: 0 0 0 3px rgba(46, 106, 89, 0.1);
}

.main-image-container {
    flex: 1;
    position: relative;
    width: 100%;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.main-product-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 500px;
    padding: 20px;
}

.image-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.image-nav-btn {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    pointer-events: auto;
    opacity: 0;
}

.main-image-container:hover .image-nav-btn {
    opacity: 1;
}

.image-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* ========================================
   PRODUCT INFO SIDE - ENHANCED
   ======================================== */
.product-info-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.product-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.product-name {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.product-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 4px;
}

.product-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.product-category i {
    font-size: 12px;
}

.product-description-card {
    background: #fafafa;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
}

.product-description-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    text-align: justify;
}

/* ========================================
   ACTION BUTTONS - ENHANCED
   ======================================== */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.datasheet-btn {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.datasheet-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.inquiry-btn {
    background: #2e6a59;
    color: white;
}

.inquiry-btn:hover {
    background: #25564a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 106, 89, 0.3);
}

.action-btn i {
    font-size: 14px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .product-image-side {
        position: relative;
        top: 0;
    }
    
    .product-name {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 0 20px;
        margin: 40px auto;
    }
    
    .product-detail-container {
        padding: 20px;
    }
    
    .image-gallery-wrapper {
        flex-direction: column-reverse;
    }
    
    .thumbnail-vertical {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .product-name {
        font-size: 20px;
    }
    
    .product-type-badge {
        font-size: 12px;
        padding: 4px 10px;
    }
}
/* ========================================
   FEATURES & SPECIFICATIONS - ENHANCED
   ======================================== */
.product-features-specs-section {
    background: #fafafa;
    padding: 60px 40px;
}

.features-specs-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Features Section Card */
.features-section {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.features-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 20px 24px;
    background: white;
    transition: all 0.2s ease;
    user-select: none;
}

.section-header:hover {
    background: #fafafa;
}

.features-section.active .section-header {
    background: #2e6a59;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section Icon */
.section-icon {
    width: 44px;
    height: 44px;
    background: #2e6a59;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.features-section.active .section-icon {
    background: white;
}

.section-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
    transition: stroke 0.2s ease;
}

.features-section.active .section-icon svg {
    stroke: #2e6a59;
}

/* Section Title Text */
.section-title-text {
    flex: 1;
}

.section-title-text h3 {
    font-size: 18px;
    color: #111827;
    font-weight: 600;
    margin: 0 0 4px 0;
    transition: color 0.2s ease;
}

.features-section.active .section-title-text h3 {
    color: white;
}

.section-title-text p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    transition: color 0.2s ease;
}

.features-section.active .section-title-text p {
    color: rgba(255, 255, 255, 0.85);
}

/* Toggle Icon */
.toggle-icon {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 13px;
    color: #6b7280;
}

.features-section.active .toggle-icon {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Section Content */
.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    opacity: 0;
}

.features-section.active .section-content {
    max-height: 3000px;
    opacity: 1;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 24px;
    margin: 0;
    display: grid;
    gap: 12px;
}

.features-list li {
    position: relative;
    padding-left: 32px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    transition: all 0.2s ease;
}

.features-list li:hover {
    color: #2e6a59;
    transform: translateX(4px);
}

.features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    background: #2e6a59;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specification Table */
.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}

.spec-table tr {
    transition: background 0.2s ease;
}

.spec-table tr:hover {
    background: #fafafa;
}

.spec-table td {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #374151;
    width: 35%;
    background: #fafafa;
}

.spec-value {
    color: #6b7280;
    width: 65%;
}


/* ========================================
   OTHER PRODUCTS SECTION
   ======================================== */
.product-section .product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.product-section .product-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-section .product-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.product-section .product-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
    border-radius: 2px;
}

.product-section .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(46, 106, 89, 0.15);
    border-color: var(--brand-green);
}

.product-card .product-image-wrapper {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-card .product-info {
    padding: 20px;
}

.product-card .product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }

    .product-image-side {
        position: relative;
        top: 0;
    }

    .product-section .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 0 20px;
        margin: 40px auto;
    }

    .product-detail-container {
        padding: 25px;
    }

    .image-gallery-wrapper {
        flex-direction: column-reverse;
    }

    .thumbnail-vertical {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }

    .thumbnail-vertical::-webkit-scrollbar {
        height: 6px;
    }

    .thumbnail-vertical::-webkit-scrollbar-thumb {
        background: var(--brand-green);
        border-radius: 3px;
    }

    .thumbnail {
        width: 75px;
        height: 75px;
        flex-shrink: 0;
    }

    .product-code {
        font-size: 24px;
    }

    .product-description {
        font-size: 12px;
        padding: 5px;
    }

  .product-features-specs-section {
        padding: 40px 20px;
    }

    .section-header {
        padding: 16px 20px;
        gap: 12px;
    }

    .section-icon {
        width: 40px;
        height: 40px;
    }

    .section-icon svg {
        width: 20px;
        height: 20px;
    }

    .section-title-text h3 {
        font-size: 16px;
    }

    .section-title-text p {
        font-size: 12px;
    }

    .features-list {
        padding: 20px;
    }

    .features-list li {
        font-size: 13px;
    }

    .spec-table td {
        padding: 12px 20px;
        font-size: 13px;
    }

    .spec-label {
        width: 40%;
    }

    .spec-value {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .product-detail-container {
        padding: 20px;
    }

    .product-code {
        font-size: 20px;
    }

    .inquiry-btn {
        padding: 14px 30px;
        font-size: 16px;
    }

    .section-header {
        padding: 18px;
    }

    .section-icon {
        width: 45px;
        height: 45px;
    }

    .section-icon svg {
        width: 22px;
        height: 22px;
    }

    .section-title-text h3 {
        font-size: 16px;
    }

    .spec-table td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .product-section .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Chat Button */
.floating-chat-button {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--brand-green);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(34, 176, 107, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.floating-chat-button:hover {
  background: var(--brand-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 176, 107, 0.4);
}

.floating-chat-button svg {
  width: 24px;
  height: 24px;
}


.chat-widget-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.chat-widget-container.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.chat-widget-container .chat-container {
  margin: 0;
  padding: 0;
}

@media (max-width: 600px) {
  .chat-widget-container {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    z-index: 1000;
  }
  #backToTop {
    position: fixed;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px;
    height: 50px;
    background-color: var(--brand-green);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 5px rgba(34, 176, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    }
}

.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideDown 0.3s ease-out;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-close:hover {
  opacity: 1;
}
/* ================================
   BACK TO TOP BUTTON
   ================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brand-green);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 5px rgba(34, 176, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
}

#backToTop:hover {
    background-color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(34, 176, 107, 0.4);
}

#backToTop:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

.arrow-icon {
    width: 12px;
    height: 12px;
    border-left: 3px solid #ededed;
    border-top: 3px solid #ededed;
    transform: rotate(45deg); 
    margin-bottom: -2px; 
}

/* ========================================
   IMPROVED CONTACT INFO STYLES
   ======================================== */

.contact-info {
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h3 {
    color: var(--brand-green);
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
}

.contact-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 80px;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    padding-left: 85px;
}

/* Contact Icon Wrapper */
.contact-icon-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Contact Icon */
.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.5;
}

/* Phone Icon */
.phone-icon {
    color: var(--brand-green-dark);
}

.contact-item:hover .phone-icon {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

/* Email Icon */
.email-icon {
    color: var(--brand-green-dark);
}

.contact-item:hover .email-icon {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

/* Location Icon */
.location-icon {
    color: var(--brand-green-dark);
}
.submenu-level-2 {
    min-width: 240px !important;
    max-width: 250px;
}

.submenu-level-2 > li > .submenu-wrapper .category-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Tampilkan ... untuk teks panjang */
    max-width: 240px;
}
.contact-item:hover .location-icon {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
}

@keyframes bounce {
    0%, 100% { transform: scale(1.1) translateY(0); }
    50% { transform: scale(1.1) translateY(-5px); }
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.contact-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-value {
    color: var(--brand-green);
    position: relative;
}

a.contact-value::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: width 0.3s ease;
}

a.contact-value:hover {
    color: var(--brand-green-dark);
}

a.contact-value:hover::after {
    width: 100%;
}

span.contact-value {
    color: var(--brand-green);
    position: relative;
}

span.contact-value::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: width 0.3s ease;
}

span.contact-value:hover {
    color: var(--brand-green-dark);
}

span.contact-value:hover::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (768-1024px) */
@media (max-width: 1024px) {
    .contact-info h3 {
        font-size: 22px;
    }

    .contact-item {
        padding: 22px 0;
        padding-left: 75px;
    }

    .contact-item:hover {
        padding-left: 80px;
    }

    .contact-icon {
        width: 52px;
        height: 52px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-value {
        font-size: 15px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .contact-info {
        gap: 20px;
    }

    .contact-info h3 {
        font-size: 20px;
    }

    .contact-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .contact-item {
        padding: 20px 0;
        padding-left: 70px;
    }

    .contact-item:hover {
        padding-left: 75px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-label {
        font-size: 10px;
    }

    .contact-value {
        font-size: 14px;
    }
    .floating-chat-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--brand-green);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(34, 176, 107, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 13px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .contact-item {
        padding: 18px 0;
        padding-left: 65px;
    }

    .contact-item:hover {
        padding-left: 70px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-value {
        font-size: 13px;
        word-break: break-word;
    }
}


/* ===== SEARCH FILTER STYLES ===== */
.search-filter-section {
    animation: fadeInDown 0.4s ease-out;
}

.search-filter-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-filter-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.search-filter-content {
    max-width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s ease;
}

.search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-style: italic;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #fafbfc;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-input:focus + .search-icon {
    color: #3b82f6;
}

.clear-search {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1;
}

.clear-search:hover {
    background-color: #f1f5f9;
    color: #475569;
}

.clear-search:active {
    transform: scale(0.95);
}

/* Enhanced Loading Animation for Table */
.loading-overlay {
    position: relative;
}

.loading-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-filter-card {
        padding: 1rem;
    }
    
    .search-input {
        padding: 0.75rem 3rem 0.75rem 2.5rem;
        font-size: 14px;
    }
    
    .search-icon {
        left: 0.75rem;
        font-size: 14px;
    }
    
    .clear-search {
        right: 0.75rem;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .search-filter-section {
        margin-bottom: 1rem;
    }
    
    .search-filter-card {
        padding: 0.75rem;
    }
    
    .search-input {
        padding: 0.65rem 2.75rem 0.65rem 2.25rem;
        font-size: 13px;
    }
}