/* Reset dan Variable */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Header & Navigasi */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: auto;
}

.logo img {
    width: 200px;
    height: auto;
}

.nav-content {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.1rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.875rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
    padding: 0.5rem 1rem;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

.lps-rate {
    display: inline;
    align-items: center;
    font-size: 0.9rem;
    color: #a4a4a4;
    padding-left: 6rem;
}

.lps-label {
    font-weight: 500;
}

.lps-value {
    font-weight: 700;
}

.lps-date {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding: 1rem 5%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 720px;
}

.carousel-controls {
    margin-top: 4rem;
}

.carousel-indicators {
    display: flex;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(5px);
    display: inline-flex;
}

.indicator {
    width: 0.8rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    display: flex;
    align-items: center;
    padding: 4rem 5% 2rem;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease-out 0.3s, transform 0.7s ease-out 0.3s;
}

.carousel-slide.active .hero-content {
    opacity: 1;
    transform: translateX(0);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    max-width: 600px;
    transition: transform 0.5s ease;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

/* CTA Button Styles */
.cta-button-container {
    text-align: center;
    margin: 3rem auto;
    padding: 1rem;
    max-width: 300px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-cta span {
    margin-right: 10px;
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.btn-learn-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-learn-more:hover {
    color: var(--secondary-color);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    justify-content: center;
}

.btn-detail:hover {
    background: #1a237e;
    transform: translateX(5px);
}

/* Footer */
footer {
    background: #1a237e;
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-media a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logos {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    align-items: center;
}

.footer-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    border-radius: 1rem;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
}

.faq-icon i {
    font-size: 1.2rem;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.toggle-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .toggle-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1rem;
}

.faq-answer ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.faq-answer ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}

.nav-link-container {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
}

.dropdown-toggle i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Base Dropdown Menu Styles */
.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-links .dropdown-menu li {
    padding: 0;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
}

.nav-links .dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Desktop Dropdown Styles */
@media screen and (min-width: 769px) {
    .nav-link-container {
        position: relative;
        padding: 0;
    }

    .dropdown-toggle {
        padding: 0.2rem;
    }

    /* Show dropdown on hover for desktop */
    .nav-links .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate arrow on hover */
    .nav-links .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Update dropdown styles for active state */
.nav-links .dropdown > a.active {
    color: var(--primary-color);
}

.nav-links .dropdown-menu a.active::after {
    display: none;
}

.nav-links .dropdown-menu a.active {
    color: var(--primary-color);
}

/* Add styles for dropdown parent when child is active */
.nav-links .dropdown.active > a {
    color: var(--primary-color);
}

.nav-links .dropdown.active > a::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}


/* Company Profile Page */
.profile-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)), url('../../media/carousel/hero-image.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    color: var(--white);
}

.profile-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.profile-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.company-profile {
    padding: 5rem 5%;
    background: var(--white);
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.profile-content h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.profile-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Profile Tabs */
.profile-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: var(--light-gray);
    color: var(--text-color);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    background: #e5e7eb;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.tab-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Vision Mission Section */
.vision-mission {
    display: grid;
    gap: 2rem;
}

.vision, .mission {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 1rem;
}

.vision h3, .mission h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
}

.mission ul {
    list-style: none;
    padding: 0;
}

.mission ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Company Values */
.company-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: #4b5563;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Board Structure Page */
.board-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)), url('../../media/carousel/hero-image.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    color: var(--white);
}

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

.board-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.board-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.board-structure {
    padding: 5rem 5%;
    background: var(--white);
}

.board-container {
    max-width: 1200px;
    margin: 0 auto;
}

.board-level {
    margin-bottom: 4rem;
}

.board-level h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.board-level h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.board-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.board-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.board-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f3f4f6;  /* Light gray background */
}

.board-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Changed from cover to contain */
    transition: none;  /* Removed transform transition */
}

.board-card:hover .board-image img {
    transform: none;  /* Removed zoom effect */
}

.board-info {
    padding: 2rem;
    text-align: center;
}

.board-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.board-title {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.board-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Location Page Styles */
.location-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)), url('../../media/carousel/hero-image.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    color: var(--white);
}

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

.location-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.location-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.location-section {
    padding: 5rem 5%;
    background: var(--white);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.office-info {
    margin-bottom: 3rem;
}

.office-info h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.office-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.address-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.address-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: var(--light-gray);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.address-details h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.address-details p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.office-hours h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.map-container {
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.direction-info {
    margin-top: 4rem;
}

.direction-info h3 {
    text-align: center;
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.direction-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.direction-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.direction-card:hover {
    transform: translateY(-5px);
}

.direction-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.direction-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.direction-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.direction-card ul li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.direction-card ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.hamburger-inner {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    left: 0;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Hamburger Animation */
.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)), url('../../media/carousel/hero-image.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    color: var(--white);
}

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

.blog-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.blog-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-categories {
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--white);
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--light-gray);
    color: var(--text-color);
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background: #e5e7eb;
}

.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.category-btn.active::after {
    display: none;  /* Remove the underline effect */
}

.featured-post {
    padding: 3rem 5%;
    background: var(--white);
}

.featured-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.post-info {
    padding: 2rem;
}

.post-info h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.post-info p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.btn-read-more:hover {
    gap: 0.8rem;
}

.blog-grid {
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.blog-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 5%;
    text-align: center;
    color: var(--white);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)), url('../../media/carousel/hero-image.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    color: var(--white);
}

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

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 5rem 5%;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #4b5563;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-links h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-buttons {
    display: flex;
    gap: 1rem;
}

.btn-send-email,
.btn-send-whatsapp {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-send-email {
    background: var(--primary-color);
    color: var(--white);
}

.btn-send-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-send-email:hover,
.btn-send-whatsapp:hover {
    transform: translateY(-2px);
}

.map-section {
    padding: 0 5% 5rem;
    background: var(--white);
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Report Page Styles */
.report-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)), url('../../media/carousel/hero-image.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 5% 4rem;
    text-align: center;
    color: var(--white);
}

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

.report-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.report-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.report-section {
    padding: 3rem 5%;
    background: var(--white);
}

.report-container {
    max-width: 1200px;
    margin: 0 auto;
}

.report-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: var(--light-gray);
    color: var(--text-color);
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.report-content {
    margin-top: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.report-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.report-card h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pdf-container {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdf-container iframe {
    border: none;
    display: block;
}

.report-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Report List Styles */
.report-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.report-icon {
    font-size: 2rem;
    color: #e53e3e;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-details {
    flex: 1;
}

.report-details h3 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.report-meta {
    display: flex;
    gap: 1.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.report-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-unduh {
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.btn-unduh:hover {
    background: var(--secondary-color);
}

/* Product Page Styles */
.product-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a237e 100%);
    padding: 120px 5% 60px;
    text-align: center;
    color: var(--white);
}

.product-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-weight: 700;
}

.product-hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.product-section {
    padding: 60px 5%;
    background: var(--light-gray);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.product-tabs .tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: var(--white);
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-tabs .tab-btn i {
    font-size: 1.2rem;
}

.product-tabs .tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.product-tabs .tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.product-content {
    margin-top: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.product-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.feature-list li i {
    color: var(--primary-color);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    justify-content: center;
}

.btn-detail:hover {
    background: #1a237e;
    transform: translateX(5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128C7E;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float span {
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.simulation-section {
    margin-top: 4rem;
    text-align: center;
}

.simulation-section h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.simulation-section p {
    color: #666;
    margin-bottom: 2rem;
}

.simulation-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.simulation-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    color: #666;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input[name="nominal"] {
    padding-left: 3rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-calculate {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.simulation-result {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: left;
}

.simulation-result h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item span {
    color: #666;
}

.result-item strong {
    color: var(--text-color);
    font-weight: 600;
}

.slider-container {
    padding: 10px 0;
    margin-top: 10px;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    margin-bottom: 15px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.slider-value {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    color: #666;
    font-size: 0.75rem;
    margin: 0 -10px;
}

.slider-labels span {
    position: relative;
    padding-top: 10px;
    width: 48px;
    text-align: center;
}

.slider-labels span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: #e5e7eb;
}

.simulation-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

.simulation-disclaimer i {
    margin-right: 0.5rem;
    color: #888;
}

.whistleblowing-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.whistleblowing-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.whistleblowing-info h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.whistleblowing-info h3 {
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.whistleblowing-info p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.whistleblowing-info ul {
    list-style: none;
    padding-left: 1rem;
}

.whistleblowing-info ul li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.whistleblowing-info ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.whistleblowing-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.whistleblowing-form h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.whistleblowing-form .form-group {
    margin-bottom: 1.5rem;
}

.whistleblowing-form label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.whistleblowing-form input[type="text"],
.whistleblowing-form input[type="email"],
.whistleblowing-form input[type="tel"],
.whistleblowing-form input[type="date"],
.whistleblowing-form select,
.whistleblowing-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.whistleblowing-form input:focus,
.whistleblowing-form select:focus,
.whistleblowing-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.whistleblowing-form small {
    display: block;
    color: #6b7280;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.whistleblowing-form input[type="checkbox"] {
    margin-right: 0.5rem;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.whistleblowing-note {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.whistleblowing-note h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.whistleblowing-note ul {
    list-style: none;
    padding-left: 1rem;
}

.whistleblowing-note ul li {
    color: #856404;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.whistleblowing-note ul li::before {
    content: "!";
    color: #856404;
    position: absolute;
    left: 0;
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

/* Add offset for anchor links to account for fixed navbar */
#simulasi {
    scroll-margin-top: 135px;  /* Adjust this value based on your navbar height */
}

/* Custom Checkbox Styles */
.custom-checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #2563eb;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #f0f9ff;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.product-cta {
    text-align: center;
    margin-top: 2rem;
}

.product-cta .btn-detail {
    display: inline-flex;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    margin: 0 auto;
}

/* Blog Categories */
.blog-categories .category-btn {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-categories .category-btn.active {
    color: var(--white);
}

.blog-categories .category-btn.active::after {
    display: none;  /* Remove the underline effect */
}

.whistleblowing-buttons {
    margin: 2rem 0;
    text-align: center;
}

.whistleblowing-buttons.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.whistleblowing-buttons h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.whistleblowing-buttons p {
    color: #4b5563;
    margin-bottom: 2rem;
}

.button-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-report {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--primary-color);
    color: var(--white);
}

.btn-report.whatsapp {
    background: #25D366;
}

.btn-report i {
    font-size: 1.2rem;
}

.btn-report:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-section {
    flex: 1;
    padding: 1rem;
}

/* Hide footer LPS rate by default (desktop) */
.footer-section .lps-rate {
    display: none;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-meta-top {
    margin-bottom: 1rem;
    margin-top: 9rem;
}

.post-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    padding-top: 1rem;
    justify-content: center;
    gap: 2rem;
    color: #666;
}

.author-info, .read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-featured-image {
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.post-content {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.post-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.post-share h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
}

.share-button.facebook {
    background-color: #1877f2;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.whatsapp {
    background-color: #25d366;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pagination-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pagination-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Location Styles */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.main-office {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.branch-offices {
    padding: 2rem 0;
}

.branch-offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.main-office-card {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.branch-office-card {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.2s;
}

.branch-office-card:hover {
    transform: translateY(-5px);
}

.address-card {
    padding: 1.5rem;
    border-radius: 8px;
}

.address-icon {
    margin-bottom: 1rem;
}

.address-icon i {
    font-size: 2rem;
    color: #0056b3;
}

.address-details h3 {
    color: #333;
    margin-bottom: 1rem;
}

.office-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.office-hours h4 {
    color: #555;
    margin-bottom: 0.5rem;
}

/* Pawn Estimation Styles */
.pawn-hero {
    background-color: #0056b3;
    color: white;
    padding: 180px 5% 60px;
    text-align: center;
    margin-bottom: 3rem;
}

.pawn-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pawn-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
}

.tab-button {
    padding: 0.8rem 1.5rem;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.tab-button i {
    font-size: 1.1rem;
}

.tab-button:hover {
    background: #e9ecef;
    color: #0056b3;
}

.tab-button.active {
    background: #0056b3;
    color: white;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: #e9ecef;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.category-header {
    margin-bottom: 2rem;
    text-align: center;
}

.category-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.category-description {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.loan-range {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.loan-amount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.loan-amount:last-child {
    margin-bottom: 0;
}

.label {
    color: #666;
}

.amount {
    color: #0056b3;
    font-weight: bold;
}

.requirements, .notes {
    margin-top: 1.5rem;
}

.requirements h4, .notes h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* MOBILE LAYOUT BELOW */

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .logo img {
        width: 100px;
        height: auto;
    }
    
    .navbar {
        flex-direction: column;
    }

    .nav-header {
        width: 100%;
        justify-content: space-between;
    }

    .nav-content {
        width: 120%;
        margin-left: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        padding: 0.7rem;
        display: block;
        border-bottom: 1px solid var(--light-gray);
    }

    .lps-rate {
        display: none;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-links .dropdown.active > a::after {
        display: none;
    }

/* Responsive Design */
    .carousel-slide {
        display: flex;
        flex-direction: column;
        padding: 6rem 5% 2rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 0;
        order: 2;  /* Move content below image */
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-top: 0;  /* Remove top margin since image is above */
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.3;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 0;  /* Remove top margin */
        margin-bottom: 2rem;  /* Add bottom margin */
        order: 1;  /* Move image to top */
    }

    .hero-image img {
        height: 250px;  /* Adjust height as needed */
    }

    .cta-buttons {
        justify-content: center;
    }

    .carousel-controls {
        margin-top: 2rem;  /* Adjust spacing for controls */
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 100px;
    }

    .footer-logos {
        justify-content: center;
    }
    
    .footer-logos img {
        height: 40px;
    }

    .faq {
        padding: 3rem 1rem;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

/* Mobile Dropdown Styles */
    .nav-link-container {
        display: flex;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links .dropdown-menu {
        position: static;
        background: var(--light-gray);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: visible;
        transform: none;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .nav-links .dropdown.active .dropdown-menu {
        opacity: 1;
        max-height: 500px;
    }

    .nav-links .dropdown-menu a {
        padding: 0.7rem 2rem;
    }

/* Responsive Design for Profile Page */
    .profile-hero {
        padding: 6rem 1rem 3rem;
    }

    .profile-hero-content h1 {
        font-size: 2rem;
    }

    .company-profile {
        padding: 3rem 1rem;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .company-values {
        grid-template-columns: 1fr;
    }

    .vision-mission {
        gap: 1rem;
    }

    .vision, .mission {
        padding: 1.5rem;
    }

/* Responsive Design for Board Page */
    .board-hero {
        padding: 6rem 1rem 3rem;
    }

    .board-hero-content h1 {
        font-size: 2rem;
    }

    .board-structure {
        padding: 3rem 1rem;
    }

    .board-card {
        max-width: 100%;
    }

    .board-image {
        height: 250px;
    }

    .board-info {
        padding: 1.5rem;
    }

    .board-info h3 {
        font-size: 1.3rem;
    }

/* Responsive Design for Location Page */
    .location-hero {
        padding: 6rem 1rem 3rem;
    }

    .location-hero-content h1 {
        font-size: 2rem;
    }

    .location-section {
        padding: 3rem 1rem;
    }

    .address-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .contact-info p {
        justify-content: center;
    }

    .direction-card {
        padding: 1.5rem;
    }

    .hamburger {
        display: block;
        margin-left: auto;
    }

    .nav-content {
        display: none;
        width: 100%;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-content.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        display: block;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links .dropdown {
        width: 100%;
    }

    .nav-link-container {
        padding: 0;
    }

    .nav-link {
        flex: 1;
        padding: 1rem 1.5rem;
    }

    .dropdown-toggle {
        padding: 1rem 1.5rem;
        border-left: 1px solid var(--light-gray);
    }

    .nav-links .dropdown-menu {
        width: 100%;
        padding: 0;
        background: var(--light-gray);
    }

    .nav-links .dropdown-menu a {
        padding-left: 2.5rem;
    }

/* Responsive Design for Blog Page */
    .blog-hero {
        padding: 6rem 1rem 3rem;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 300px;
    }

    .post-info {
        padding: 1.5rem;
    }

    .post-info h2 {
        font-size: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
        justify-content: center;
    }

/* Responsive Design for Contact Page */
    .contact-hero {
        padding: 6rem 1rem 3rem;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-send-email,
    .btn-send-whatsapp {
        width: 100%;
    }

    .info-item {
        gap: 1rem;
    }

/* Responsive Design for Report Page */
    .report-hero {
        padding: 6rem 1rem 3rem;
    }

    .report-hero-content h1 {
        font-size: 2rem;
    }

    .report-section {
        padding: 2rem 1rem;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .report-card {
        padding: 1.5rem;
    }

    .report-card h2 {
        font-size: 1.5rem;
    }

    .pdf-container iframe {
        height: 400px;
    }

    .report-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .report-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-unduh {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .product-hero {
        padding: 100px 5% 40px;
    }

    .product-hero-content h1 {
        font-size: 2rem;
    }

    .product-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-tabs .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1.5rem;
    }

/* Add media query for mobile devices */
    .whatsapp-float {
        padding: 10px 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 20px;
    }
    
    .whatsapp-float span {
        font-size: 13px;
    }

    .simulation-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .simulation-result {
        padding: 1.5rem;
    }

    .slider-labels {
        font-size: 0.7rem;
    }
    
    .slider-labels span {
        width: 20px;
    }

    .simulation-disclaimer {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .whistleblowing-content {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .whistleblowing-form,
    .whistleblowing-info {
        padding: 1.5rem;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-report {
        width: 100%;
        justify-content: center;
    }

    .lps-rate {
        display: none;
    }

    .footer-section .lps-rate {
        display: block;
        text-align: center;
        background-color: var(--light-gray);
        padding: 0.75rem;
        margin-top: -3rem;
        margin-bottom: 2rem;
        border-radius: 4px;
        font-size: 0.875rem;
    }

    .footer-section .lps-rate .lps-label {
        display: block;
        margin-bottom: 0.25rem;
        color: var(--text-color);
    }

    .footer-section .lps-rate .lps-value {
        font-weight: 600;
        color: var(--primary-color);
    }

    .footer-section .lps-rate .lps-date {
        display: block;
        font-size: 0.75rem;
        color: var(--text-color);
        opacity: 0.8;
    }

    .blog-post {
        margin-top: 100px;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-button {
        justify-content: center;
    }

/* Responsive Styles */
    .branch-offices-grid {
        grid-template-columns: 1fr;
    }
    
    .address-card {
        margin-bottom: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
        
    .pawn-hero {
        padding: 110px 5% 40px;
    }
    
    .pawn-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
/* END OF MOBILE LAYOUT */

@media screen and (max-width: 768px) {
    .product-card {
        min-width: 470%;
    }
}

/* Index Page Specific Styles */
.index-products {
    padding: 4rem 2rem;
}

.index-products-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.index-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.index-product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.index-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.index-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.index-product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.index-product-heading {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.index-product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.index-product-action {
    margin-top: auto;
}

.index-btn-learn-more {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.index-btn-learn-more:hover {
    background-color: var(--secondary-color);
}

/* Mobile Responsive Styles for Index Page */
@media screen and (max-width: 768px) {
    .index-products {
        padding: 2rem 1rem;
    }

    .index-products-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .index-product-grid {
        grid-template-columns: 1fr;
    }

    .index-product-card {
        margin-bottom: 1.5rem;
    }

    .index-product-heading {
        font-size: 1.3rem;
    }
}