/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #ffffff;
}

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

/* Header Styles - Professional Clean Design */
.header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f2f5;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #3498db;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover:after {
    width: 100%;
}

/* Simple Language Switcher - Page Redirect */
.language-switcher {
    margin-left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: 1px solid #3498db;
    border-radius: 4px;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 500;
    color: #3498db;
    text-decoration: none;
    min-width: 45px;
    justify-content: center;
    font-size: 0.75rem;
}

.language-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-1px);
}

.language-btn.active {
    background: #3498db;
    color: white;
}

.lang-flag {
    font-size: 0.8rem;
}

.lang-text {
    font-size: 0.85rem;
    font-weight: 600;
}

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

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #f0f2f5;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #3498db;
    padding-left: 2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hero Section - Clean Professional Style */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat bottom;
    background-size: 100% 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Helvetica', Arial, sans-serif;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Helvetica', Arial, sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-car-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* Services Section - Card Grid Layout */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 4rem;
    font-family: 'Helvetica', Arial, sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #f0f2f5;
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #e3f2fd;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 600;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.6;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.95rem;
}

/* About Section - Professional Layout */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.about-text h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 2rem 0 1.5rem 0;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: 'Helvetica', Arial, sans-serif;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Helvetica', Arial, sans-serif;
    padding: 0.5rem 0;
}

.feature-icon {
    color: #3498db;
    font-weight: bold;
    font-size: 1.1rem;
}

.feature span:last-child {
    color: #2c3e50;
    font-weight: 500;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f2f5;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
}

.stat h3 {
    font-size: 2.2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 700;
}

.stat p {
    color: #5a6c7d;
    font-weight: 500;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.9rem;
}

/* Contact Section - Professional Form Design */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    color: #3498db;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.6;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.95rem;
}

.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f2f5;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Helvetica', Arial, sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

/* Footer - Clean Professional Design */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
    line-height: 1.6;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.9rem;
}

/* Service Page Styles - Professional Layout */
.service-page {
    padding-top: 100px;
}

.service-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-text h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.service-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Helvetica', Arial, sans-serif;
}

.service-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.service-details {
    padding: 100px 0;
    background: #ffffff;
}

.service-description h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 700;
}

.service-description p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-family: 'Helvetica', Arial, sans-serif;
}

.service-features,
.service-benefits {
    margin-bottom: 3rem;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.service-features h3,
.service-benefits h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    font-family: 'Helvetica', Arial, sans-serif;
    border-bottom: 1px solid #e9ecef;
    transition: color 0.3s ease;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
    top: 1rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    color: #2c3e50;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        width: 100%;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        border-top: 3px solid #3498db;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid #f0f2f5;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    /* Mobile Language Switcher */
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
        gap: 1rem;
    }
    
    .language-btn {
        width: 60px;
        padding: 0.25rem 0.4rem;
        font-size: 0.7rem;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: #2c3e50;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
        position: relative;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
        border-left-color: #3498db;
        color: #3498db;
        padding-left: 2.5rem;
    }
    
    .nav-link:after {
        display: none;
    }
    
    .dropdown-toggle {
        position: relative;
    }
    
    .dropdown-toggle:after {
        content: '+';
        position: absolute;
        right: 2rem;
        font-size: 1.2rem;
        font-weight: bold;
        color: #3498db;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle:after {
        transform: rotate(45deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        border-radius: 0;
        display: none;
        border: none;
        border-top: 1px solid #e9ecef;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 300px;
        }
    }
    
    .dropdown-link {
        padding: 0.8rem 3rem;
        font-size: 0.9rem;
        color: #5a6c7d;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        display: block;
        border-bottom: 1px solid #e9ecef;
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:hover {
        background: #e9ecef;
        border-left-color: #3498db;
        color: #3498db;
        padding-left: 3.5rem;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(12px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-car-image {
        max-height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        justify-content: center;
        padding: 0.5rem 0;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
        min-width: 100px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-section {
        gap: 1.5rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-text h1 {
        font-size: 2.2rem;
    }
    
    .service-main-image {
        height: 250px;
    }
    
    .service-description h2 {
        font-size: 1.8rem;
    }
    
    .service-features,
    .service-benefits {
        padding: 1.5rem;
    }
    
    .service-features h3,
    .service-benefits h3 {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .stat h3 {
        font-size: 1.6rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-text h1 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
}