* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: #DDD0C8;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(221, 208, 200, 0.98);
    height: 80px;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #323232;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

nav:hover {
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #323232;
    transition: transform 0.3s ease;
    z-index: 1002;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 20px;
    color: #1A1A1A;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #323232;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #323232;
}

.nav-links a:hover::after { 
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #323232 0%, #555555 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 50, 50, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(50, 50, 50, 0.5);
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #1A1A1A;
}

.logo img {
    height: 120px;        
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo img {
    max-height: 50px;
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 40px;
    background: #DDD0C8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 80px);
    max-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(50, 50, 50, 0.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    flex: 1;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: 52px;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(135deg, #323232 0%, #555555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #FFFFFF;
    color: #323232;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #323232;
}

.btn-secondary:hover {
    background: #323232;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.car-slider {
    position: relative;
    background: transparent;
    padding: 40px;
    border-radius: 30px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.car-slide.active {
    opacity: 1;
}

.car-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 36px;
    background: linear-gradient(135deg, #323232 0%, #555555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    color: #555555;
    font-size: 14px;
}

/* Cars Section */
.cars-section {
    padding: 100px 80px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title h2 {
    font-size: 42px;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.section-title h2 span {
    background: linear-gradient(135deg, #323232 0%, #555555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    color: #555555;
    font-size: 16px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.car-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(50, 50, 50, 0.2);
}

.car-image {
    padding: 30px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.1) rotate(2deg);
}

.car-info {
    padding: 25px;
}

.car-info h3 {
    font-size: 22px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.car-price {
    font-size: 28px;
    color: #323232;
    font-weight: bold;
    margin-bottom: 5px;
}

.car-price span {
    font-size: 16px;
    color: #555555;
    font-weight: normal;
}

.car-passengers {
    color: #555555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Features Section */
.features-section {
    padding: 100px 80px;
    background: #DDD0C8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #FFFFFF;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(50, 50, 50, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #323232 0%, #555555 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 80px;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: #DDD0C8;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(50, 50, 50, 0.2);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 60px;
}

.testimonial-author {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 16px;
}

/* Location Section */
.location-section {
    padding: 100px 80px;
    background: #DDD0C8;
}

.location-content {
    margin-top: 60px;
    background: #FFFFFF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.location-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(50, 50, 50, 0.15);
}

.location-content iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Contact Section */
.contact-section {
    padding: 100px 80px;
    background: linear-gradient(135deg, #323232 0%, #555555 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: block;
    color: inherit;
}

.contact-card:link,
.contact-card:visited,
.contact-card:hover,
.contact-card:active {
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: rgba(50, 50, 50, 0.5);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #DDD0C8 0%, #FFFFFF 100%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: #323232;
}

.contact-card h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    text-decoration: none;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
}

.contact-card:link h3,
.contact-card:visited h3,
.contact-card:hover h3,
.contact-card:active h3 {
    color: white;
    text-decoration: none;
}

.contact-card:link p,
.contact-card:visited p,
.contact-card:hover p,
.contact-card:active p {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Footer */
footer {
    background: #1A1A1A;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer .logo {
    color: white;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #DDD0C8;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    animation: none;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        padding: 0 40px;
    }

    .hero,
    .cars-section,
    .features-section,
    .testimonials-section,
    .location-section,
    .contact-section,
    footer {
        padding: 60px 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        height: 70px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(221, 208, 200, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(50, 50, 50, 0.1);
        width: 100%;
        text-align: center;
        font-size: 18px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
    }

    nav .btn-primary {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        order: 2;
        width: 100%;
    }

    .hero-image {
        order: 1;
        width: 100%;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }

    .cars-section,
    .features-section,
    .testimonials-section,
    .location-section,
    .contact-section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 14px;
    }

    .cars-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .car-slider {
        height: 200px;
        padding: 20px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }

    footer {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .car-info h3 {
        font-size: 18px;
    }

    .car-price {
        font-size: 22px;
    }

    .testimonial-card {
        min-width: 250px;
        max-width: 250px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
.hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
}

.hero-content {
    order: 2;
    width: 100%;
}

.hero-image {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero h1 {
    font-size: 28px;
}

.hero p {
    font-size: 15px;
    line-height: 1.5;
}

.hero-buttons {
    justify-content: center;
}
}

/* Popup Modal Styling */
.modal {
display: none;
position: fixed;
z-index: 2000;
padding-top: 80px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.6);
animation: fadeIn 0.3s ease;
}

.modal-content {
background-color: #fff;
margin: auto;
padding: 30px;
border-radius: 20px;
width: 90%;
max-width: 500px;
box-shadow: 0 10px 40px rgba(0,0,0,0.3);
text-align: center;
position: relative;
}

.modal-content img {
width: 100%;
border-radius: 15px;
margin-bottom: 20px;
}

.modal-content h3 {
color: #1A1A1A;
font-size: 24px;
margin-bottom: 10px;
}

.modal-content p {
color: #555;
margin-bottom: 10px;
}

.modal-content .btn-primary {
display: inline-block;
margin-top: 15px;
}

.close {
position: absolute;
top: 10px;
right: 20px;
font-size: 28px;
color: #333;
cursor: pointer;
transition: 0.3s;
}

.close:hover {
color: #000;
transform: scale(1.1);
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.contact-card p {
word-wrap: break-word;
overflow-wrap: break-word;
white-space: normal;
max-width: 100%;
text-align: center;
}

.contact-card h3, 
.contact-card p {
margin: 5px 0;
}

.contact-grid {
align-items: stretch;
}

.contact-card {
display: flex;
flex-direction: column;
justify-content: center;
}

/* box adaptif di HP */
@media (max-width: 768px) {
.contact-card {
    padding: 25px 20px;
}
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    .hero p {
        font-size: 14px;
    }
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .car-card {
        margin: 0 auto;
    }
 }