:root {
    --primary: #D81324;
    --secondary: #519beb;
    --light: #F2F2F2;
    --dark: #949090;
}


body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* Pastikan judul dan elemen lain juga mengikuti */
h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link {
    font-family: 'Poppins', sans-serif;
}
.fw-medium {
    font-weight: 500 !important;
}


/*** Navbar Global ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

/* Pengaturan Logo Agar Tidak Penyet */
.img-logo-nav {
    width: 200px; /* Ukuran default desktop */
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* Tinggi Navbar Desktop */
.navbar-light .navbar-brand {
    height: 75px;
    display: flex;
    align-items: center;
}

/*** RESPONSIVE SETTINGS (Untuk HP & Tablet) ***/
@media (max-width: 991.98px) {
    .navbar-light .navbar-brand {
        height: 60px; /* Tinggi navbar mengecil di HP */
    }

    .img-logo-nav {
        width: 140px; /* Lebar logo mengecil di HP agar tidak kebesaran */
        max-height: 45px;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
        padding-bottom: 10px;
    }
}

/* Sticky Navbar */
.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

/* Dropdown Menu Desktop */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.car-location-section {
    background-color: #fcfcfc;
}

/* Header Styling */
.header-content h1 {
    font-size: calc(1.8rem + 1.2vw);
    
}

.text-danger {
    color: #D81324 !important;
}

/* Map Wrapper - Membuat sudut halus dan bayangan elegan */
.map-wrapper {
    border-radius: 25px;
    background: #fff;
    transition: transform 0.3s ease;
}

.map-info-footer {
    border-top: 1px solid #f0f0f0;
}

/* Tombol Custom */
.btn-whatsapp {
    background-color: #25d366;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1eb954;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-maps {
    transition: all 0.3s ease;
}

.btn-maps:hover {
    background-color: #b5101e;
    transform: translateY(-2px);
}

/* Konsultasi Text */
.consult-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsif Mobile (Inspect Mode) */
@media (max-width: 768px) {
    
    
    iframe {
        height: 300px !important;
    }

    .map-wrapper {
        border-radius: 15px; /* Sedikit lebih tajam di HP agar space maksimal */
    }

    .map-info-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .consult-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

/* Footer Custom Styling */
.footer-custom {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    color: #333;
    font-family: 'poppins', sans-serif;
}

.footer-logo .tagline {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
}

.footer-logo .tagline strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

.section-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a2a4e; /* Warna gelap khas header */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #D81324;
}

.award-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.copyright-text {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
}

/* Penyesuaian Responsif */
@media (max-width: 991.98px) {
    .copyright-text {
        text-align: center !important;
        margin-top: 30px;
    }
}

.footer-custom {
    background-color: #ffffff;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
}

.footer-links li a:hover {
    color: #D81324 !important; /* Warna merah saat di-hover */
    padding-left: 5px;
    transition: 0.3s;
}

.copyright-text h5 {
    font-size: 1.1rem;
    margin: 0;
}