/* Baduran Trans Theme Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background-color: #000000;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.3s ease;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
    color: #38b6ff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 104px;
    left: 0;
    width: 100%;
    height: calc(100vh - 104px);
    background-color: #000000;
    z-index: 999;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: #38b6ff;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #0b131f 0%, #1e293b 100%);
    position: relative;
    padding-top: 3rem;
    color: #ffffff;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 560px;
}

.btn-hero {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-hero:hover {
    background-color: #38b6ff;
    border-color: #38b6ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.4);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    width: 100%;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 10;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    font-size: 1.5rem;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.hero-slider-prev {
    left: 10px;
}

.hero-slider-next {
    right: 10px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #38b6ff;
}

/* Hero Feature Bar */
.hero-feature-bar {
    background-color: #38b6ff;
    padding: 1.75rem 2rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.feature-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    gap: 0.75rem;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.feature-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
}

/* About Section Styles */
.about-section {
    background-color: #00a2ff;
    color: #ffffff;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: start;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: justify;
}

.about-subheading {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.about-list {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.about-list li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.about-list li strong {
    font-weight: 800;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.torn-paper-frame {
    background: #ffffff;
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Rental Section Styles */
.rental-section {
    position: relative;
}

.rental-header-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.rental-header-container {
    max-width: 1280px;
    margin: 0 auto;
}

.rental-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.rental-subtitle-top {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.rental-subtitle {
    font-size: 1.05rem;
    color: #e2e8f0;
    max-width: 680px;
    margin: 0 auto;
}

.rental-body {
    background-color: #38b6ff;
    padding: 4rem 2rem;
}

.rental-container {
    max-width: 1280px;
    margin: 0 auto;
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.car-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.car-image-container {
    width: 100%;
    height: 250px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 0.75rem;
}

.car-specs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.spec-item svg {
    color: #38b6ff;
}

.price-section {
    flex-grow: 1;
}

.price-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 0.75rem;
}

.price-category {
    margin-bottom: 1rem;
}

.category-badge {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 0.35rem 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #334155;
}

.price-row span {
    font-size: 0.8rem;
    font-weight: 600;
}

.price-row strong {
    color: #0284c7;
    font-weight: 800;
    font-size: 0.9rem;
}

.price-note {
    font-size: 0.72rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
    line-height: 1.4;
}

.btn-booking {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #22c55e;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-booking:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .site-logo {
        height: 60px;
    }

    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        top: 84px;
        height: calc(100vh - 84px);
        padding-top: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem 3rem 1rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .feature-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .feature-item {
        border-right: none;
    }

    .feature-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.35);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .rental-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .rental-grid {
        grid-template-columns: 1fr;
    }

    .rental-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .feature-bar-container {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        padding-bottom: 1rem;
    }

    .feature-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .about-section {
        padding: 3.5rem 1.25rem;
    }

    .rental-body {
        padding: 3rem 1rem;
    }
}

/* Testimoni Section Styles */
.testimoni-section {
    background-color: #0b131f;
    padding: 5.5rem 2rem;
    color: #ffffff;
}

.testimoni-container {
    max-width: 1280px;
    margin: 0 auto;
}

.testimoni-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimoni-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.testimoni-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.testimoni-card {
    background-color: #1e293b;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    border-color: #38b6ff;
    box-shadow: 0 10px 30px rgba(56, 182, 255, 0.15);
}

.testimoni-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimoni-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #38b6ff;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.author-role {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.2rem;
}

@media (max-width: 992px) {
    .testimoni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimoni-grid {
        grid-template-columns: 1fr;
    }

    .testimoni-title {
        font-size: 2.2rem;
    }

    .testimoni-section {
        padding: 3.5rem 1.25rem;
    }
}

/* CTA Section Styles */
.cta-section {
    background-color: #38b6ff;
    padding: 5.5rem 2rem;
    color: #ffffff;
    text-align: center;
}

.cta-container {
    max-width: 860px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.85rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-cta-wa:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-section {
        padding: 3.5rem 1.25rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-wa,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Location Section Styles */
.location-section {
    background-color: #0b131f;
    padding: 5.5rem 2rem;
    color: #ffffff;
}

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

.location-header {
    text-align: center;
    margin-bottom: 3rem;
}

.location-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.location-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 480px;
    display: block;
}

@media (max-width: 576px) {
    .location-title {
        font-size: 2.2rem;
    }

    .location-section {
        padding: 3.5rem 1.25rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #000000;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-align: center;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Fixed Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    gap: 3px;
    transition: color 0.3s ease;
}

.bottom-nav-item:hover {
    color: #38b6ff;
}

.bottom-nav-item.wa-item {
    color: #22c55e;
}

@media (max-width: 992px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    body {
        padding-bottom: 60px;
    }
}

/* Scroll Reveal Animations */
body.js-reveal-active .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

body.js-reveal-active .scroll-reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Floating WhatsApp Button */
.desktop-floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.desktop-floating-wa:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

@media (max-width: 992px) {
    .desktop-floating-wa {
        display: none;
    }
}
