body {
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
    min-height: 100vh;
}

.top-banner {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    text-align: center;
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #3d2518 100%);
    color: #d4af37;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 3px solid #d4af37;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo {
    height: 60px;
    margin-right: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #ffffff;
    background-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 50%, #03045e 100%);
    color: #ffffff;
    padding: 150px 0;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #d4af37;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.hero-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid #ffffff;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border: 2px solid #d4af37;
}

.btn:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.trucks {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.trucks h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3.5rem;
    color: #2c1810;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.trucks h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
}

.vehicle-section {
    background: white;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.vehicle-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.vehicle-info {
    padding: 40px;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    color: #d4af37;
    text-align: center;
}

.vehicle-info h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.vehicle-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.vehicle-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    margin-top: 20px;
    border: none;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 30px;
    background: #ffffff;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 3px solid #f0f0f0;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border-color: #d4af37;
}

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3rem;
    color: #2c1810;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #d4af37;
    font-family: 'Times New Roman', serif;
    opacity: 0.3;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border-color: #b8860b;
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c1810;
    font-style: italic;
    margin: 0;
    padding-left: 30px;
}

.testimonial-author {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #d4af37;
}

.testimonial-author h4 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    color: #2c1810;
    font-weight: 700;
    letter-spacing: 1px;
}

.testimonial-author p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.stars {
    color: #d4af37;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial {
        padding: 30px;
    }

    .testimonial-content p {
        font-size: 1rem;
        padding-left: 20px;
    }

    .testimonial::before {
        left: 20px;
        font-size: 3rem;
    }

    .testimonial-author h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 2.5rem;
    }

    .testimonial {
        padding: 25px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }
}

.rent {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    color: #d4af37;
}

.rent h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3rem;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.rent h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
}

form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 3px solid #d4af37;
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c1810;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

form input, form select {
    width: 100%;
    padding: 18px;
    margin-bottom: 30px;
    border: 3px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Times New Roman', serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

form input:focus, form select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
}

form button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    border: 3px solid #d4af37;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    font-family: 'Times New Roman', serif;
}

form button:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.contact {
    background: linear-gradient(135deg, #000000 0%, #2c1810 100%);
    color: #d4af37;
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #d4af37;
}

.contact h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #d4af37;
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}