/* 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: #000000;
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: #303030;
color: white;
}

.btn-catalog:hover {
background-color: #1a1a1a;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-map {
background-color: #f8f9fa;
color: #303030;
border: 2px solid #303030;
}

.btn-map:hover {
background-color: #303030;
color: white;
transform: translateY(-3px);
}

.section-title {
font-size: 36px;
color: #303030;
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: #303030;
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: #ffffff;
box-shadow: 0 4px 12px rgba(48, 48, 48, 0.1);
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
padding: 15px 0;
}

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

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

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

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

.profile-container {
display: flex;
align-items: center;
}

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

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

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

.menu-toggle {
order: 3;
display: none;
font-size: 24px;
color: #303030;
cursor: pointer;
margin-left: auto;
}

/* Profile Dropdown */
.profile-dropdown {
position: absolute;
top: 70px;
left: 0;
background-color: white;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(48, 48, 48, 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;
}

.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;
}

.profile-dropdown-content {
padding: 0;
}

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

.profile-large-photo {
width: 120px;
height: 120px;
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;
color: rgba(255, 255, 255, 0.9);
}

.profile-info {
padding: 30px;
}

.profile-description {
font-size: 16px;
line-height: 1.6;
color: #333;
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: rgba(48, 48, 48, 0.1);
transition: all 0.3s ease;
}

.contact-item:hover {
background-color: rgba(48, 48, 48, 0.2);
transform: translateX(5px);
}

.contact-item i {
width: 40px;
height: 40px;
background-color: #303030;
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: #303030;
margin-bottom: 0;
}

.email-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
background-color: #303030;
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: #1a1a1a;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.profile-dropdown-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
background-color: rgba(48, 48, 48, 0.2);
backdrop-filter: blur(0px);
display: none;
}

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

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

.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);
}
}

.profile-dropdown::before {
filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

/* Navigation Menu */
.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: #303030;
padding: 8px 0;
position: relative;
}

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

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

.nav-whatsapp-btn {
background-color: #303030;
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(0, 0, 0, 0.2);
}

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

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

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(48, 48, 48, 0.9) 0%, rgba(64, 64, 64, 0.9) 100%);
z-index: 1;
}

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

.hero-content {
flex: 1;
}

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

.hero h1 {
font-size: 42px;
color: #ffffff;
margin-bottom: 20px;
}

.hero-subtitle {
font-size: 20px;
color: rgba(255, 255, 255, 0.9);
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.3);
border: 3px solid #ffffff;
}

.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: #ffffff;
}

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

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

.slide {
min-width: 100%;
padding: 60px 40px;
background: linear-gradient(135deg, #303030 0%, #404040 100%);
color: white;
}

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

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

.slide p {
font-size: 20px;
opacity: 0.9;
color: rgba(255, 255, 255, 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(0, 0, 0, 0.5);
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;
border: 2px solid white;
}

.slider-btn:hover {
background-color: rgba(0, 0, 0, 0.8);
}

.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: #303030;
transform: scale(1.2);
}

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

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

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

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

.benefit-card {
background-color: #ffffff;
border-radius: 12px;
padding: 30px;
text-align: center;
transition: all 0.3s ease;
border: 2px solid #303030;
box-shadow: 0 5px 15px rgba(48, 48, 48, 0.1);
}

.benefit-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(48, 48, 48, 0.2);
background-color: #303030;
}

.benefit-card:hover h3,
.benefit-card:hover p {
color: white;
}

.benefit-icon {
width: 70px;
height: 70px;
background-color: #303030;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 28px;
transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
background-color: white;
color: #303030;
transform: scale(1.1);
}

.benefit-card h3 {
font-size: 22px;
color: #303030;
margin-bottom: 15px;
}

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

/* Catalog Section */
.catalog {
padding: 80px 0;
background-color: #f5f5f5;
}

.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 #303030;
border-radius: 6px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
font-size: 16px;
color: #303030;
}

.filter-btn.active, .filter-btn:hover {
background-color: #303030;
color: white;
border-color: #303030;
}

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

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

.search-box input:focus {
border-color: #404040;
outline: none;
}

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

.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(48, 48, 48, 0.1);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.car-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(48, 48, 48, 0.2);
border-color: #303030;
}

.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: #303030;
color: white;
padding: 5px 12px;
border-radius: 20px;
font-size: 14px;
font-weight: 500;
margin-bottom: 15px;
}

.car-title {
font-size: 22px;
color: #303030;
margin-bottom: 10px;
height: 60px;
}

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

.car-price {
font-size: 24px;
font-weight: 700;
color: #303030;
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: #303030;
border: 2px solid #303030;
}

.car-btn-detail:hover {
background-color: #303030;
color: white;
}

.car-btn-chat {
background-color: #303030;
color: white;
border: 2px solid #303030;
}

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

/* Modal */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(48, 48, 48, 0.9);
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;
border: 3px solid #303030;
}

@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: #303030;
cursor: pointer;
z-index: 10;
transition: color 0.3s ease;
}

.close-modal:hover {
color: #303030;
}

.modal-body {
padding: 40px;
}

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

.car-detail-header h2 {
font-size: 32px;
color: #303030;
margin-bottom: 10px;
}

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

.car-detail-price {
font-size: 28px;
font-weight: 700;
color: #303030;
background-color: rgba(48, 48, 48, 0.1);
padding: 20px;
border-radius: 8px;
text-align: center;
border: 2px solid #303030;
}

.car-detail-features h3 {
font-size: 24px;
color: #303030;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #303030;
}

.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: #303030;
}

.contact-form h3 {
font-size: 24px;
color: #303030;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #303030;
}

.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 #303030;
border-radius: 6px;
font-size: 16px;
font-family: 'Inter', sans-serif;
transition: all 0.3s ease;
}

.form-control:focus {
border-color: #303030;
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: #303030;
color: white;
border: none;
border-radius: 6px;
font-size: 18px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
margin-top: 10px;
border: 2px solid #303030;
}

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

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

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

.article-card {
background-color: white;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
border: 2px solid #303030;
box-shadow: 0 5px 15px rgba(48, 48, 48, 0.1);
}

.article-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(48, 48, 48, 0.2);
background-color: #303030;
}

.article-card:hover h3,
.article-card:hover p,
.article-card:hover .article-date {
color: white;
}

.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: #303030;
font-weight: 500;
margin-bottom: 10px;
}

.article-card h3 {
font-size: 22px;
color: #303030;
margin-bottom: 15px;
height: 70px;
}

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

.article-link {
color: #303030;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
transition: gap 0.3s ease;
}

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

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

.gallery .section-title {
color: white;
}

.gallery .section-subtitle {
color: rgba(255, 255, 255, 0.9);
}

.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.2);
background-color: white;
border: 3px solid #ffffff;
}

.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: #303030;
margin-bottom: 8px;
}

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

.gallery-slide-info .car-model {
font-weight: 600;
color: #000000;
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: #303030;
color: white;
border: 2px solid white;
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: #1a1a1a;
color: white;
transform: scale(1.1);
}

.gallery-btn:active {
background-color: #404040;
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: white;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid #303030;
}

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

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

.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: #303030;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
flex-shrink: 0;
}

.contact-details h3 {
font-size: 22px;
color: #303030;
margin-bottom: 10px;
}

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

.contact-details a {
color: #303030;
font-weight: 600;
}

.contact-details a:hover {
color: #1a1a1a;
}

.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(48, 48, 48, 0.15);
height: 100%;
border: 2px solid #303030;
}

/* Footer */
.footer {
background-color: #303030;
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: #ffffff;
}

.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: #303030;
color: white;
padding: 15px 20px;
border-radius: 50px;
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
box-shadow: 0 5px 15px rgba(48, 48, 48, 0.3);
z-index: 100;
transition: all 0.3s ease;
border: 2px solid white;
}

.whatsapp-float:hover {
background-color: #1a1a1a;
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(48, 48, 48, 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) {
.nav-menu {
position: static;
transform: none;
left: auto;
}


.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;
order: 3;
margin-left: auto;
}


.nav-left {
    order: 1;
}

.nav-menu {
    order: 4;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(48, 48, 48, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-top: 2px solid #303030;
}

.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;
}

.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;
}

.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(48, 48, 48, 0.95);
}

.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;
}

.gallery-dots {
    margin-top: 15px;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}


.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: 100px;
    height: 100px;
}

.profile-info {
    padding: 20px;
}

.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;
}

.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;
}

/* ========== TAMBAHAN UNTUK TOMBOL WHATSAPP NAVBAR LEBIH PANJANG ========== */
.nav-whatsapp-btn {
background-color: #303030;
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(0, 0, 0, 0.2);
}

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

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


.slider-controls {
    display: flex;
}
}

/* Why Us Section - Compact Version */
.why-us {
padding: 50px 0;
background-color: #ffffff;
}

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

.benefit-card {
background-color: #ffffff;
border-radius: 8px;
padding: 16px;
text-align: center;
transition: all 0.2s ease;
border: 1px solid #303030;
min-height: 200px;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.benefit-card:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(48, 48, 48, 0.1);
border-color: #303030;
background-color: #303030;
}

.benefit-card:hover h3,
.benefit-card:hover p {
color: white;
}

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

.benefit-card:hover .benefit-icon {
background-color: white;
color: #303030;
transform: scale(1.03);
}

.benefit-card h3 {
font-size: 16px;
color: #303030;
margin-bottom: 10px;
line-height: 1.3;
font-weight: 600;
}

.benefit-card p {
color: #666;
font-size: 13px;
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 CAROUSEL SIMPLE & WORKING ========== */
/* Pastikan tombol visible di semua device */
.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(48, 48, 48, 0.95);
color: white;
border: 2px solid white;
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);
}

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

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

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

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

.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;
}
}

/* Foto dropdown lebih besar */
.profile-large-photo.extra-large {
width: 140px;
height: 140px;
border: 5px solid white;
}

/* Adjust header untuk menampung foto yang lebih besar */
.profile-header {
padding: 30px 30px 20px 30px;
}

.profile-header h3 {
margin-top: 10px;
}

.profile-dropdown {
max-height: 520px;
}

@media (max-width: 768px) {
.profile-large-photo {
width: 110px;
height: 110px;
}


.profile-dropdown {
    max-height: 500px;
}
}

@media (max-width: 480px) {
.profile-large-photo {
width: 100px;
height: 100px;
}
}

/* ========== OVERLAY TERANG ========== */
.profile-dropdown-overlay {
background-color: rgba(48, 48, 48, 0.2);
}

/* Tambahan styles untuk memastikan konsistensi tema abu-abu-putih-hitam */

/* Body background untuk semua section yang tidak memiliki background khusus */
section:not(.hero):not(.promo-slider):not(.why-us):not(.catalog):not(.promotions):not(.gallery):not(.contact) {
background-color: #ffffff;
}

/* Hover effects untuk semua tombol dengan tema abu-abu */
.btn:hover {
transform: translateY(-3px);
}

/* Border dan shadow dengan warna tema */
.border-gray {
border-color: #303030 !important;
}

.border-black {
border-color: #000000 !important;
}

.shadow-gray {
box-shadow: 0 5px 15px rgba(48, 48, 48, 0.15) !important;
}

.shadow-black {
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Text colors untuk tema */
.text-gray {
color: #303030 !important;
}

.text-black {
color: #000000 !important;
}

.text-white {
color: #ffffff !important;
}

/* Background colors untuk tema */
.bg-gray {
background-color: #303030 !important;
}

.bg-black {
background-color: #000000 !important;
}

.bg-white {
background-color: #ffffff !important;
}

/* Gradient untuk tema */
.gradient-gray-black {
background: linear-gradient(135deg, #303030 0%, #000000 100%) !important;
}

.gradient-black-gray {
background: linear-gradient(135deg, #000000 0%, #303030 100%) !important;
}

/* Active state untuk elemen navigasi */
.nav-menu a.active {
color: #303030;
font-weight: 600;
}

/* Focus states untuk accessibility */
button:focus,
input:focus,
a:focus {
outline: 2px solid #303030;
outline-offset: 2px;
}

/* Custom scrollbar dengan tema */
::-webkit-scrollbar {
width: 10px;
}

::-webkit-scrollbar-track {
background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
background: #303030;
border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
background: #404040;
}

/* Selection color dengan tema */
::selection {
background-color: #303030;
color: white;
}

/* Placeholder text color */
::placeholder {
color: #666;
opacity: 0.7;
}

/* Loading states */
.loading {
border: 3px solid #f3f3f3;
border-top: 3px solid #303030;
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

/* GANTI WARNA DESKRIPSI MOBIL MENJADI HITAM */
.car-card .car-description {
color: #000000 !important;
}

/* SEMUA WARNA TEKS DI MODAL CAR DETAIL MENJADI HITAM */
.car-detail-content {
color: #000000 !important;
}

.car-price-range,
.car-price-range span {
color: #000000 !important;
}

.car-variants-section h3 {
color: #000000 !important;
border-bottom-color: #000000 !important;
}

.variants-table th,
.variants-table td {
color: #000000 !important;
}

/* Kecuali harga biar abu-abu */
.price-cell {
color: #303030 !important;
}

/* Kecuali tombol biar hijau */
.action-cell .variant-whatsapp-btn {
color: white !important;
}

/* Target semua teks di dalam .car-info kecuali yang sudah punya warna khusus */
.car-info *:not(.car-price):not(.car-category):not(.car-btn) {
color: #000000 !important;
}

/* Theme variables for easy customization */
:root {
--color-primary: #303030;
--color-primary-dark: #404040;
--color-primary-light: #505050;
--color-secondary: #000000;
--color-secondary-light: #333333;
--color-white: #FFFFFF;
--color-gray-light: #F5F5F5;
--color-gray: #000000;
--color-gray-dark: #333333;


--font-primary: 'Poppins', sans-serif;
--font-secondary: 'Inter', sans-serif;

--border-radius-sm: 4px;
--border-radius-md: 8px;
--border-radius-lg: 12px;
--border-radius-xl: 16px;
--border-radius-full: 9999px;

--shadow-sm: 0 2px 4px rgba(48, 48, 48, 0.1);
--shadow-md: 0 4px 8px rgba(48, 48, 48, 0.15);
--shadow-lg: 0 8px 16px rgba(48, 48, 48, 0.2);
--shadow-xl: 0 16px 32px rgba(48, 48, 48, 0.25);

--transition-fast: 150ms ease;
--transition-base: 300ms ease;
--transition-slow: 500ms ease;

--container-max-width: 1200px;
--container-padding: 20px;
}

/* Utility classes menggunakan CSS variables */
.text-primary { color: var(--color-primary) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.border-primary { border-color: var(--color-primary) !important; }

.text-secondary { color: var(--color-secondary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }
.border-secondary { border-color: var(--color-secondary) !important; }

/* Responsive font sizes */
@media (max-width: 768px) {
:root {
--container-padding: 15px;
}


.section-title {
    font-size: 28px;
}

.section-subtitle {
    font-size: 18px;
}

.hero h1 {
    font-size: 32px;
}

.hero h2 {
    font-size: 24px;
}
}

@media (max-width: 480px) {
:root {
--container-padding: 10px;
}


.section-title {
    font-size: 24px;
}

.hero h1 {
    font-size: 28px;
}
}

/* Print styles */
@media print {
.no-print {
display: none !important;
}


body {
    background-color: white !important;
    color: black !important;
}

a {
    color: black !important;
    text-decoration: underline !important;
}

.btn,
.whatsapp-float,
.nav-whatsapp-btn {
    display: none !important;
}

.container {
    max-width: 100% !important;
    padding: 0 !important;
}
}

/* High contrast mode */
@media (prefers-contrast: high) {
:root {
--color-primary: #404040;
--color-secondary: #000000;
}


body {
    color: #000000;
    background-color: #FFFFFF;
}

a {
    text-decoration: underline;
}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}

/* Custom focus styles untuk accessibility */
:focus-visible {
outline: 3px solid var(--color-primary);
outline-offset: 2px;
}

/* Skip to main content link untuk screen readers */
.skip-to-content {
position: absolute;
top: -40px;
left: 0;
background: var(--color-primary);
color: white;
padding: 8px;
z-index: 9999;
text-decoration: none;
}

.skip-to-content:focus {
top: 0;
}

/* ARIA live regions */
[aria-live="polite"] {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

/* Loading skeleton */
.skeleton {
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
background-size: 200% 100%;
animation: loading 1.5s infinite;
}

@keyframes loading {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}

/* Toast notifications */
.toast {
position: fixed;
bottom: 20px;
right: 20px;
background: var(--color-primary);
color: white;
padding: 16px 24px;
border-radius: var(--border-radius-md);
box-shadow: var(--shadow-lg);
z-index: 9999;
animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}

/* Tooltip enhancements */
.tooltip {
position: relative;
}

.tooltip-text {
visibility: hidden;
width: 120px;
background-color: var(--color-primary);
color: white;
text-align: center;
border-radius: var(--border-radius-sm);
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
}

.tooltip-text::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: var(--color-primary) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}

/* Custom scrollbar untuk Webkit browsers */
::-webkit-scrollbar {
width: 10px;
}

::-webkit-scrollbar-track {
background: var(--color-gray-light);
}

::-webkit-scrollbar-thumb {
background: var(--color-primary);
border-radius: var(--border-radius-full);
}

::-webkit-scrollbar-thumb:hover {
background: var(--color-primary-dark);
}

/* Firefox scrollbar */

* {
scrollbar-width: thin;
scrollbar-color: var(--color-primary) var(--color-gray-light);
}


/* Selection color */
::selection {
background-color: var(--color-primary);
color: white;
}

/* Placeholder styling */
::placeholder {
color: var(--color-gray);
opacity: 0.7;
}

/* Autofill styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px white inset;
box-shadow: 0 0 0px 1000px white inset;
-webkit-text-fill-color: var(--color-gray-dark);
transition: background-color 5000s ease-in-out 0s;
}

/* Number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
opacity: 1;
height: auto;
}

/* Range input styling */
input[type="range"] {
-webkit-appearance: none;
width: 100%;
height: 4px;
border-radius: var(--border-radius-full);
background: var(--color-gray-light);
outline: none;
}

input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--color-primary);
cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--color-primary);
cursor: pointer;
border: none;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
:root {
--color-primary: #505050;
--color-secondary: #FFFFFF;
--color-white: #1A1A1A;
--color-gray-light: #2D2D2D;
--color-gray: #CCCCCC;
--color-gray-dark: #E0E0E0;
}

body {
    background-color: #121212;
    color: #E0E0E0;
}

.hero,
.header,
.gallery {
    background-color: #1A1A1A;
}

.catalog,
.promotions,
.why-us,
.contact {
    background-color: #2D2D2D;
}

.footer {
    background-color: #000000;
}
}


.why-us .section-title,
.why-us .section-subtitle,

.catalog .section-title,
.catalog .section-subtitle,

.promotions .section-title,
.promotions .section-subtitle,

.contact .section-title,
.contact .section-subtitle {
color: #ffffff;
}


.contact,
.contact h3,
.contact p,
.contact a {
color: #ffffff;
}


/* Tombol Google Maps - tidak terlalu putih */
.btn-map {
background-color: #606569;   /* abu terang, tidak silau */
color: #303030;
border: 2px solid #303030;
}

.btn-map:hover {
background-color: #303030;
color: #ffffff;
}

/* ===================================== */
/* NAVBAR DESKTOP & MOBILE - TEXT PUTIH */
/* ===================================== */

/* Navbar background (desktop & mobile) */
.header {
background-color: #1a1a1a;
}

/* Teks menu navbar (desktop) */
.nav-menu a {
color: #ffffff !important;
}

/* Hover & active tetap putih */
.nav-menu a:hover,
.nav-menu a.active {
color: #ffffff !important;
}

/* Garis aktif di bawah menu */
.nav-menu a.active::after {
background-color: #ffffff;
}


/* BURGER MENU (MOBILE) */


@media (max-width: 768px) {
.nav-menu {
background-color: #1a1a1a;
}

.nav-menu li a {
color: #ffffff !important;
}
}


/* TOMBOL WHATSAPP NAVBAR */


.nav-whatsapp-btn {
background-color: #606569 !important;
color: #ffffff !important;
border: none;
}

.nav-whatsapp-btn:hover {
background-color: #505458 !important;
}


/* TOMBOL HUBUNGI DI BURGER MENU */


@media (max-width: 768px) {
.nav-menu .nav-whatsapp-btn {
width: 100%;
justify-content: center;
background-color: #606569 !important;
}
}

@media (max-width: 768px) {
.menu-toggle,
.menu-toggle i {
color: #ffffff !important;
}
}
