/* Reset und Grundlegendes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand h1 {
    font-size: 2.2em;
    margin-bottom: 5px;
}

.nav-brand h1 a {
    color: white;
    text-decoration: none;
}

.nav-brand .tagline {
    font-size: 0.9em;
    opacity: 0.9;
    font-style: italic;
}

.nav-contact {
    text-align: right;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone strong {
    font-size: 1.3em;
    margin-bottom: 3px;
}

.phone strong a {
    color: #fff;
    text-decoration: none;
}

.phone span {
    font-size: 0.85em;
    opacity: 0.9;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

/* Navigation Menu */
.nav-menu {
    background: rgba(255,255,255,0.1);
    padding: 10px 0;
    border-radius: 5px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    min-width: 200px;
    top: 100%;
    left: 0;
    z-index: 1001;
}

.dropdown-content a {
    color: #333 !important;
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background: #f8f9fa;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/car-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Content Sections */
.content {
    padding: 40px 0;
}

.section {
    margin-bottom: 50px;
}

.section h2 {
    font-size: 2.5em;
    color: #1e3c72;
    margin-bottom: 20px;
    text-align: center;
}

.section h3 {
    font-size: 1.8em;
    color: #2a5298;
    margin-bottom: 15px;
}

.section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h4 {
    font-size: 1.5em;
    color: #1e3c72;
    margin-bottom: 15px;
}

.service-card .icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #ff6b35;
}

/* USPs */
.usps {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.usps h3 {
    text-align: center;
    margin-bottom: 30px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.usp-item .check {
    color: #28a745;
    font-size: 1.5em;
    margin-right: 15px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 40px 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #2a5298;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

.copyright {
    text-align: right;
}

.copyright small {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Quick Contact Buttons */
.quick-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.quick-phone,
.quick-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.quick-phone {
    background: #1e3c72;
}

.quick-whatsapp {
    background: #25d366;
}

.quick-phone:hover,
.quick-whatsapp:hover {
    transform: scale(1.1);
}

/* Keywords Highlights */
.keywords {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.keywords h3 {
    margin-bottom: 20px;
    color: white;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.keyword-tag {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 2.5em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copyright {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .section h2 {
        font-size: 2em;
    }
    
    .quick-contact {
        right: 15px;
        bottom: 15px;
    }
    
    .quick-phone,
    .quick-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
}