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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
}

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

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-catalog {
    background-color: #003366; /* Biru tua mengganti hijau */
    color: white;
}

.btn-catalog:hover {
    background-color: #002244; /* Biru tua lebih gelap */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}

.btn-map {
    background-color: #f8f9fa;
    color: #003366; /* Biru tua mengganti hijau */
    border: 2px solid #003366; /* Biru tua mengganti hijau */
}

.btn-map:hover {
    background-color: #003366; /* Biru tua mengganti hijau */
    color: white;
    transform: translateY(-3px);
}

.section-title {
    font-size: 36px;
    color: #003366; /* Biru tua mengganti hijau */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0040ff;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.toyota-logo {
    height: 30px;
    width: auto;
}

.logo-text h1 {
    font-size: 28px;
    margin-bottom: 0;
    font-weight: 700;
}

.logo-text h1 .tunas {
    color: #003366; /* Biru tua untuk "tunas" */
}

.logo-text h1 .toyota {
    color: #FF0000; /* Merah untuk "toyota" */
}

.logo-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #003366; /* Biru tua mengganti hijau */
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF0000; /* Merah untuk underline aktif */
    border-radius: 1.5px;
}

.nav-whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 20px 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-whatsapp-btn:hover {
    background-color: #1da851;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #003366; /* Biru tua mengganti hijau */
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h2 {
    font-size: 28px;
    color: #666;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 42px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Promo Slider */
.promo-slider {
    padding: 80px 0;
    background-color: #f0f2f7; /* Warna biru muda */
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.slide {
    min-width: 100%;
    padding: 60px 40px;
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Gradient biru */
    color: white;
}

.slide-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.slide h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.slide p {
    font-size: 20px;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #003366; /* Biru tua mengganti hijau */
    transform: scale(1.2);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #003366; /* Biru tua mengganti hijau */
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #e8ebf5; /* Biru muda */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #003366; /* Biru tua mengganti hijau */
    font-size: 28px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: #003366; /* Biru tua mengganti hijau */
    color: white;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 22px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    font-size: 16px;
}

/* Catalog Section */
.catalog {
    padding: 80px 0;
    background-color: #f0f2f7; /* Warna biru muda */
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #003366; /* Biru tua mengganti hijau */
    color: white;
    border-color: #003366; /* Biru tua mengganti hijau */
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #003366; /* Biru tua mengganti hijau */
    outline: none;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

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

.car-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-info {
    padding: 25px;
}

.car-category {
    display: inline-block;
    background-color: #e8ebf5; /* Biru muda */
    color: #003366; /* Biru tua mengganti hijau */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.car-title {
    font-size: 22px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 10px;
    height: 60px;
}

.car-variant {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    height: 50px;
}

.car-price {
    font-size: 24px;
    font-weight: 700;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 20px;
}

.car-buttons {
    display: flex;
    gap: 10px;
}

.car-btn {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
}

.car-btn-detail {
    background-color: #f8f9fa;
    color: #003366; /* Biru tua mengganti hijau */
    border: 2px solid #003366; /* Biru tua mengganti hijau */
}

.car-btn-detail:hover {
    background-color: #003366; /* Biru tua mengganti hijau */
    color: white;
}

.car-btn-chat {
    background-color: #0040ff;
    color: white;
}

.car-btn-chat:hover {
    background-color: #1da851;
}

/* Gallery Section - Carousel */
.gallery {
    padding: 60px 0;
    background-color: #f0f2f7;
}

.gallery-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: white;
}

.gallery-carousel {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.gallery-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-slide-image {
    height: 350px;
    overflow: hidden;
}

.gallery-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-slide-image img {
    transform: scale(1.02);
}

.gallery-slide-info {
    padding: 25px;
    text-align: center;
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-slide-info h4 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 8px;
}

.gallery-slide-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-slide-info .car-model {
    font-weight: 600;
    color: #FF0000;
    margin-top: 5px;
}

/* Gallery Carousel Controls */
.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.gallery-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #003366;
    border: 2px solid #003366;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-btn:hover {
    background-color: #003366;
    color: white;
    transform: scale(1.1);
}

/* Gallery Carousel Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 0;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: #003366;
    transform: scale(1.2);
}

/* Responsive for Gallery Carousel */
@media (max-width: 768px) {
    .gallery-carousel {
        height: 450px;
    }
    
    .gallery-slide-image {
        height: 300px;
    }
    
    .gallery-slide-info {
        padding: 20px;
    }
    
    .gallery-slide-info h4 {
        font-size: 20px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-carousel {
        height: 400px;
    }
    
    .gallery-slide-image {
        height: 250px;
    }
    
    .gallery-slide-info {
        padding: 15px;
    }
    
    .gallery-slide-info h4 {
        font-size: 18px;
    }
    
    .gallery-slide-info p {
        font-size: 14px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .gallery-dots {
        margin-top: 15px;
    }
}

/* Remove old gallery grid styles */
.gallery-grid {
    display: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #003366; /* Biru tua mengganti hijau */
}

.modal-body {
    padding: 40px;
}

.car-detail-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.car-detail-header h2 {
    font-size: 32px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 10px;
}

.car-detail-header p {
    font-size: 20px;
    color: #666;
}

.car-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #003366; /* Biru tua mengganti hijau */
    background-color: #f0f2f7; /* Warna biru muda */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.car-detail-features h3 {
    font-size: 24px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8ebf5; /* Biru muda */
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.features-list i {
    color: #003366; /* Biru tua mengganti hijau */
}

.contact-form h3 {
    font-size: 24px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8ebf5; /* Biru muda */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #003366; /* Biru tua mengganti hijau */
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background-color: #0040ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #1da851;
}

/* Promotions Section */
.promotions {
    padding: 80px 0;
    background-color: white;
}

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

.article-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

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

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-date {
    font-size: 14px;
    color: #003366; /* Biru tua mengganti hijau */
    font-weight: 500;
    margin-bottom: 10px;
}

.article-card h3 {
    font-size: 22px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 15px;
    height: 70px;
}

.article-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    height: 70px;
}

.article-link {
    color: #003366; /* Biru tua mengganti hijau */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.article-link:hover {
    gap: 15px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #f0f2f7; /* Warna biru muda */
}

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

.gallery-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-info {
    padding: 20px;
    text-align: center;
}

.gallery-info h4 {
    font-size: 20px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 5px;
}

.gallery-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

.car-model {
    font-weight: 600;
    color: #FF0000; /* Merah untuk model mobil */
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #e8ebf5; /* Biru muda */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366; /* Biru tua mengganti hijau */
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 22px;
    color: #003366; /* Biru tua mengganti hijau */
    margin-bottom: 10px;
}

.contact-details p {
    color: #666;
    font-size: 16px;
}

.contact-details a {
    color: #003366; /* Biru tua mengganti hijau */
    font-weight: 600;
}

.contact-details a:hover {
    color: #FF0000; /* Merah untuk hover */
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* Footer */
.footer {
    background-color: #003366; /* Biru tua mengganti hijau */
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-toyota-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 5px;
}

.footer-text h3 .tunas {
    color: #ffffff;
}

.footer-text h3 .toyota {
    color: #FF6B6B; /* Merah lebih terang untuk footer */
}

.footer-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 0;
}

.footer-message {
    max-width: 800px;
    margin: 0 auto;
}

.footer-message p {
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-disclaimer {
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1da851;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-map {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .benefits-grid, .catalog-grid, .articles-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-box {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .slider-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .benefit-card, .car-card, .article-card, .gallery-item {
        padding: 20px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

/* ========== TAMBAHAN UNTUK CAROUSEL DRAG ========== */
.slider {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
    width: 100%;
}

.slider.grabbing {
    cursor: grabbing;
    transition: none;
}

/* ========== TAMBAHAN UNTUK TOMBOL WHATSAPP NAVBAR LEBIH PANJANG ========== */
.nav-whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 28px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.nav-whatsapp-btn:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ========== TAMBAHAN RESPONSIVE UNTUK CAROUSEL ========== */
@media (max-width: 768px) {
    .slider-container {
        overflow: hidden;
    }
    
    .slider-controls {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    /* GANTI background-color dengan background-image */
    /* background-image: url('Foto-adlan.jpg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

/* Tambahkan overlay untuk meningkatkan keterbacaan teks */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.65); /* Overlay putih semi-transparan */
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2; /* Pastikan konten di atas overlay */
}

/* Tambahan untuk teks agar lebih terbaca */
.hero h2 {
    font-size: 28px;
    color: #003366; /* Biru tua */
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 42px;
    color: #003366; /* Biru tua */
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Optimasi untuk responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

/* Why Us Section */
.why-us {
    padding: 50px 0; /* Lebih kecil */
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Lebih kecil */
    margin-top: 25px;
}

.benefit-card {
    background-color: #f8f9fa;
    border-radius: 8px; /* Lebih kecil */
    padding: 16px; /* Lebih kecil */
    text-align: center;
    transition: all 0.2s ease; /* Lebih cepat */
    border: 1px solid #e0e0e0; /* Border tipis */
    min-height: 200px; /* Lebih pendek */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-card:hover {
    transform: translateY(-3px); /* Lebih kecil */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #003366;
}

.benefit-icon {
    width: 50px; /* Lebih kecil */
    height: 50px; /* Lebih kecil */
    background-color: #e8ebf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px; /* Lebih kecil */
    color: #003366;
    font-size: 20px; /* Lebih kecil */
    transition: all 0.2s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: #003366;
    color: white;
    transform: scale(1.03); /* Lebih kecil */
}

.benefit-card h3 {
    font-size: 16px; /* Lebih kecil */
    color: #003366;
    margin-bottom: 10px; /* Lebih kecil */
    line-height: 1.3;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    font-size: 13px; /* Lebih kecil */
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsive untuk tablet */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .benefit-card {
        min-height: 190px;
        padding: 15px;
    }
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .benefit-card {
        min-height: 180px;
        padding: 14px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .benefit-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 12.5px;
    }
}

/* Responsive untuk mobile kecil */
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-card {
        min-height: 170px;
        padding: 12px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .benefit-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .benefit-card p {
        font-size: 12px;
    }
}

/* Gallery Section - Carousel (PERBAIKAN UNTUK MOBILE) */
.gallery-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: white;
    /* Tambahkan untuk mobile */
    touch-action: pan-y pinch-zoom;
}

.gallery-carousel {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
    /* Tambahkan untuk mobile */
    width: 100%;
    cursor: grab;
}

.gallery-carousel.grabbing {
    cursor: grabbing;
    transition: none;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Tambahkan untuk mobile */
    flex-shrink: 0;
}

/* Responsive for Gallery Carousel - PERBAIKAN */
@media (max-width: 768px) {
    .gallery-carousel {
        height: 450px;
    }
    
    .gallery-slide-image {
        height: 300px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    /* Pastikan tombol terlihat di mobile */
    .gallery-controls {
        display: flex !important;
    }
}

@media (max-width: 576px) {
    .gallery-carousel {
        height: 400px;
    }
    
    .gallery-slide-image {
        height: 250px;
    }
    
    .gallery-slide-info {
        padding: 15px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Sembunyikan dots jika di mobile kecil */
    .gallery-dots {
        margin-top: 15px;
    }
}

/* Pastikan tombol visible di semua device */
.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex !important; /* FORCE DISPLAY */
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.gallery-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #003366;
    border: 2px solid #003366;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex !important; /* FORCE DISPLAY */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Hover effect untuk desktop */
@media (hover: hover) {
    .gallery-btn:hover {
        background-color: #003366;
        color: white;
        transform: scale(1.1);
    }
}

/* Active effect untuk touch devices */
.gallery-btn:active {
    background-color: #003366;
    color: white;
    transform: scale(0.95);
}

/* ========== GALLERY CAROUSEL (FIXED) ========== */
.gallery {
    padding: 60px 0;
    background-color: #f0f2f7;
}

.gallery-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: white;
    touch-action: pan-y;
}

.gallery-carousel {
    display: flex;
    transition: transform 0.5s ease;
    height: 500px;
    width: 100%;
    cursor: grab;
}

.gallery-carousel.grabbing {
    cursor: grabbing;
    transition: none;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.gallery-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-slide-image {
    height: 350px;
    overflow: hidden;
}

.gallery-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-slide-image img {
    transform: scale(1.02);
}

.gallery-slide-info {
    padding: 25px;
    text-align: center;
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-slide-info h4 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 8px;
}

.gallery-slide-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-slide-info .car-model {
    font-weight: 600;
    color: #FF0000;
    margin-top: 5px;
}

/* Gallery Controls */
.gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 15px;
    pointer-events: none;
    z-index: 10;
}

.gallery-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: #003366;
    border: 2px solid #003366;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.gallery-btn:hover {
    background-color: #003366;
    color: white;
    transform: scale(1.1);
}

.gallery-btn:active {
    background-color: #002244;
    transform: scale(0.95);
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 0;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: #003366;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-carousel {
        height: 450px;
    }
    
    .gallery-slide-image {
        height: 300px;
    }
    
    .gallery-slide-info {
        padding: 20px;
    }
    
    .gallery-slide-info h4 {
        font-size: 20px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-carousel {
        height: 400px;
    }
    
    .gallery-slide-image {
        height: 250px;
    }
    
    .gallery-slide-info {
        padding: 15px;
    }
    
    .gallery-slide-info h4 {
        font-size: 18px;
    }
    
    .gallery-slide-info p {
        font-size: 14px;
    }
    
    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* DEBUG: Tampilkan semua slide */
.gallery-slide {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
}

/* ========== NAVBAR LAYOUT BARU ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Bagian kiri: Logo + Foto Profil */
.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Logo TunasToyota */
.logo {
    display: flex;
    align-items: center;
}

.toyota-logo {
    height: 40px;
    width: auto;
}

/* Profile Photo/Logo Styles */
.profile-container {
    display: flex;
    align-items: center;
}

.profile-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #003366;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.profile-photo:hover {
    transform: scale(1.05);
    border-color: #FF0000;
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hamburger menu tetap di pojok kanan */
.menu-toggle {
    order: 3; /* Memastikan hamburger di urutan terakhir (paling kanan) */
    display: none; /* Tetap tersembunyi di desktop */
    font-size: 24px;
    color: #003366;
    cursor: pointer;
    margin-left: auto;
}

/* Profile Dropdown - Desain baru sesuai gambar */
.profile-dropdown {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 350px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border: 2px solid #e8ebf5;
    overflow: hidden;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 70px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

/* Content dropdown */
.profile-dropdown-content {
    padding: 0;
}

.profile-header {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.profile-large-photo {
    width: 390px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-large-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.profile-title {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
}

.profile-info {
    padding: 30px;
}

.profile-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #e8ebf5;
    transform: translateX(5px);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 0;
}

.email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #003366;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-size: 16px;
}

.email-btn:hover {
    background-color: #004488;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.email-btn i {
    font-size: 18px;
}

/* Overlay for closing dropdown */
.profile-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
}

.profile-dropdown-overlay.active {
    display: block;
}

/* Navigation Menu tetap di tengah (desktop) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #003366;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FF0000;
    border-radius: 1.5px;
}

.nav-whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 28px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.nav-whatsapp-btn:hover {
    background-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .nav-menu {
        position: static;
        transform: none;
        left: auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        order: 3;
        margin-left: auto;
    }
    
    .nav-left {
        order: 1;
    }
    
    .nav-menu {
        order: 4;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .profile-dropdown {
        top: 65px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: 350px;
    }
    
    .profile-dropdown::before {
        left: 60px;
    }
    
    .profile-photo {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .nav-left {
        gap: 10px;
    }
    
    .toyota-logo {
        height: 35px;
    }
    
    .profile-photo {
        width: 40px;
        height: 40px;
    }
    
    .profile-dropdown {
        width: calc(100% - 30px);
        max-width: 300px;
    }
    
    .profile-header {
        padding: 25px 20px;
    }
    
    .profile-large-photo {
        width: 80px;
        height: 80px;
    }
    
    .profile-info {
        padding: 20px;
    }
}

/* ========== DROPDOWN COMPACT VERSION ========== */
.profile-dropdown {
    position: absolute;
    top: 70px;
    left: 0;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    width: 350px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border: 2px solid #e8ebf5;
    overflow: hidden;
    max-height: 500px;
}

/* Content dropdown - lebih compact */
.profile-dropdown-content {
    padding: 0;
}

/* Header lebih compact */
.profile-header {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: white;
    padding: 25px 30px 20px 30px; /* Mengurangi padding bawah */
    text-align: center;
}

/* Foto tetap besar */
.profile-large-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    margin: 0 auto 15px; /* Mengurangi margin bawah */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-header h3 {
    font-size: 22px; /* Sedikit lebih kecil */
    margin-bottom: 5px;
    color: white;
}

.profile-title {
    font-size: 15px; /* Sedikit lebih kecil */
    opacity: 0.9;
    margin-bottom: 0;
}

/* Info section lebih compact */
.profile-info {
    padding: 20px 30px 25px 30px; /* Mengurangi padding atas */
}

.profile-description {
    font-size: 15px; /* Sedikit lebih kecil */
    line-height: 1.5; /* Line height lebih rapat */
    color: #555;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px; /* Mengurangi margin bawah */
    padding: 8px 10px; /* Mengurangi padding */
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #e8ebf5;
    transform: translateX(5px);
}

.contact-item i {
    width: 35px; /* Lebih kecil */
    height: 35px; /* Lebih kecil */
    background-color: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Lebih kecil */
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 11px; /* Lebih kecil */
    color: #666;
    margin-bottom: 3px; /* Lebih rapat */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 15px; /* Sedikit lebih kecil */
    font-weight: 600;
    color: #003366;
    margin-bottom: 0;
}

/* Tombol lebih compact */
.email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Gap lebih kecil */
    background-color: #003366;
    color: white;
    padding: 12px; /* Lebih kecil */
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-size: 15px; /* Lebih kecil */
    margin-top: 5px; /* Menambah margin kecil di atas */
}

.email-btn:hover {
    background-color: #004488;
    transform: translateY(-2px); /* Animasi lebih kecil */
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.3);
}

.email-btn i {
    font-size: 16px; /* Lebih kecil */
}

/* ========== VERSI LEBIH KOMPAK LAGI (OPTIONAL) ========== */
.profile-dropdown.compact {
    max-height: 450px; /* Lebih pendek lagi */
    width: 320px; /* Lebih sempit */
}

.profile-dropdown.compact .profile-header {
    padding: 20px 25px 15px 25px;
}

.profile-dropdown.compact .profile-large-photo {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
}

.profile-dropdown.compact .profile-header h3 {
    font-size: 20px;
}

.profile-dropdown.compact .profile-title {
    font-size: 14px;
}

.profile-dropdown.compact .profile-info {
    padding: 15px 25px 20px 25px;
}

.profile-dropdown.compact .profile-description {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.profile-dropdown.compact .contact-item {
    margin-bottom: 12px;
    padding: 7px 8px;
}

.profile-dropdown.compact .contact-item i {
    width: 32px;
    height: 32px;
    font-size: 15px;
}

.profile-dropdown.compact .contact-label {
    font-size: 10px;
}

.profile-dropdown.compact .contact-value {
    font-size: 14px;
}

.profile-dropdown.compact .email-btn {
    padding: 10px;
    font-size: 14px;
}

/* ========== RESPONSIVE COMPACT ========== */
@media (max-width: 768px) {
    .profile-dropdown {
        max-height: 450px;
        width: calc(100% - 20px);
        max-width: 320px;
    }
    
    .profile-header {
        padding: 20px 25px 15px 25px;
    }
    
    .profile-large-photo {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
    }
    
    .profile-info {
        padding: 15px 25px 20px 25px;
    }
    
    .profile-description {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .profile-dropdown {
        max-height: 420px;
        max-width: 280px;
    }
    
    .profile-large-photo {
        width: 80px;
        height: 80px;
    }
    
    .profile-header h3 {
        font-size: 20px;
    }
    
    .contact-item {
        padding: 6px 8px;
    }
    
    .email-btn {
        padding: 10px;
    }
}

/* ========== OVERLAY TERANG ========== */
.profile-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.2); /* Lebih terang (0.2 vs 0.3 sebelumnya) */
    backdrop-filter: blur(0px); /* Efek blur ringan */
    display: none;
}

.profile-dropdown-overlay.active {
    display: block;
    animation: fadeInOverlay 0.3s ease;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== ANIMASI DROPDOWN YANG LEBIH HALUS ========== */
.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: slideDownFade 0.3s ease;
}

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

/* Arrow tetap terlihat */
.profile-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 70px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05)); /* Shadow untuk arrow */
}

/* ========== FOTO DROPDOWN LEBIH BESAR ========== */

/* 1. Perbesar foto di dropdown */
.profile-large-photo {
    width: 120px; /* Diperbesar dari 100px */
    height: 120px; /* Diperbesar dari 100px */
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 2. Jika mau lebih besar lagi (opsional) */
.profile-large-photo.extra-large {
    width: 140px;
    height: 140px;
    border: 5px solid white;
}

/* 3. Adjust header untuk menampung foto yang lebih besar */
.profile-header {
    background: linear-gradient(135deg, #003366 0%, #004488 100%);
    color: white;
    padding: 30px 30px 20px 30px; /* Tambah padding atas jika perlu */
    text-align: center;
}

/* 4. Adjust judul jika perlu */
.profile-header h3 {
    font-size: 24px; /* Bisa diperbesar sedikit */
    margin-bottom: 5px;
    color: white;
    margin-top: 10px; /* Tambah margin atas */
}

/* 5. Jika perlu adjust ukuran dropdown karena foto lebih besar */
.profile-dropdown {
    /* ... properti lainnya tetap ... */
    max-height: 520px; /* Tambah sedikit jika foto lebih besar */
}

/* ========== RESPONSIVE untuk foto besar ========== */
@media (max-width: 768px) {
    .profile-large-photo {
        width: 110px; /* Sesuaikan untuk mobile */
        height: 110px;
    }
    
    .profile-dropdown {
        max-height: 500px; /* Sesuaikan untuk mobile */
    }
}

@media (max-width: 480px) {
    .profile-large-photo {
        width: 100px; /* Untuk mobile kecil */
        height: 100px;
    }
}