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

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

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

/* Header Styles */
.navbar {
    background-color: #1a472a;
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.phone-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.language-link {
    color: #e8f5e8;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 12px;
    border: 1px solid #e8f5e8;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.language-link:hover {
    background-color: #e8f5e8;
    color: #1a472a;
}

.phone-header .phone-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 20px;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.phone-header .phone-link:hover {
    background-color: #ffd700;
    color: #1a472a;
}

.phone-header .whatsapp-link {
    color: #25d366;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 20px;
    border: 2px solid #25d366;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.phone-header .whatsapp-link:hover {
    background-color: #25d366;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e8f5e8;
    font-weight: 400;
}

.phone-cta {
    margin: 40px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #1a472a;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.whatsapp-cta {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #e8f5e8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a472a;
}

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

.service-item {
    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 ease;
}

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

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a472a;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    color: #1a472a;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 16px;
    border: 2px solid #1a472a;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: #1a472a;
    color: white;
    transform: translateY(-2px);
}

/* Areas Section */
.areas {
    padding: 80px 0;
    background-color: white;
}

.areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a472a;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.areas-list h3,
.areas-description h3 {
    color: #1a472a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.areas-list ul {
    list-style: none;
}

.areas-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.areas-list li:before {
    content: "✓ ";
    color: #1a472a;
    font-weight: bold;
    margin-right: 10px;
}

.areas-description p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.areas-description strong {
    color: #1a472a;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #ffd700;
}

.phone-contact,
.whatsapp-contact {
    margin-bottom: 40px;
}

.phone-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    margin: 15px 0;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #ffed4e;
}

.whatsapp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #25d366;
    text-decoration: none;
    margin: 15px 0;
    padding: 15px 30px;
    background-color: rgba(37, 211, 102, 0.1);
    border: 2px solid #25d366;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.whatsapp-number:hover {
    background-color: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-details {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-details p {
    margin-bottom: 10px;
    color: #e8f5e8;
}

.contact-details strong {
    color: white;
}

/* Footer */
footer {
    background-color: #0d2818;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-contact h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffd700;
}

.footer-links h4 {
    color: #ffd700;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #2d5a3d;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Impressum Section */
.impressum-section {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
    margin-top: 70px;
    min-height: 80vh;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.impressum-content h1 {
    color: #1a472a;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.impressum-text h2 {
    color: #1a472a;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 5px;
}

.impressum-text h2:first-child {
    margin-top: 0;
}

.impressum-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.impressum-text strong {
    color: #1a472a;
}

.impressum-text a {
    color: #1a472a;
    text-decoration: underline;
}

.impressum-text a:hover {
    color: #2d5a3d;
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.back-link .cta-button {
    background-color: #1a472a;
    color: white;
    font-size: 1.1rem;
}

.back-link .cta-button:hover {
    background-color: #2d5a3d;
}

/* Taxi Wiesbaden Frankfurt Page Styles */
.route-info {
    padding: 80px 0;
    background-color: white;
}

.route-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a472a;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.route-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1a472a;
}

.route-item h3 {
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.route-item p {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.route-item ul {
    list-style: none;
    padding-left: 0;
}

.route-item li {
    padding: 5px 0;
    color: #666;
}

.route-item li:before {
    content: "→ ";
    color: #1a472a;
    font-weight: bold;
    margin-right: 8px;
}

.areas-covered {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.areas-covered h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a472a;
}

.pickup-zones h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #1a472a;
}

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

.zone {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.zone h4 {
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 8px;
}

.zone ul {
    list-style: none;
    padding-left: 0;
}

.zone li {
    padding: 5px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.zone li:before {
    content: "📍 ";
    margin-right: 8px;
}

.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a472a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit {
    padding: 25px;
    border-radius: 10px;
    background: #f8f9fa;
    border-top: 4px solid #25d366;
}

.benefit h3 {
    color: #1a472a;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.booking-info h3 {
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background-color: #ffd700;
    color: #1a472a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffd700;
    margin-bottom: 8px;
}

.step-content p {
    color: #e8f5e8;
    line-height: 1.6;
}

.contact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-box h3 {
    color: #ffd700;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method.phone {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

.contact-method.phone:hover {
    background: #ffd700;
    color: #1a472a;
}

.contact-method.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
}

.contact-method.whatsapp:hover {
    background: #25d366;
    color: white;
}

.contact-method .icon {
    font-size: 1.5rem;
}

.contact-method div {
    color: inherit;
}

.contact-method strong {
    display: block;
    margin-bottom: 3px;
}

.contact-note {
    text-align: center;
    font-size: 0.9rem;
    color: #e8f5e8;
    margin-top: 15px;
}

/* Destination Information Section */
.destination-info {
    padding: 80px 0;
    background-color: white;
}

.destination-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a472a;
}

.destination-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.destination-text h3 {
    color: #1a472a;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.destination-text h4 {
    color: #1a472a;
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
}

.destination-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.destination-list {
    list-style: none;
    padding-left: 0;
}

.destination-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.destination-list li:before {
    content: "🏛️ ";
    margin-right: 8px;
}

.destination-highlights h3 {
    color: #1a472a;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #1a472a;
}

.highlight h4 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-header {
        gap: 10px;
    }
    
    .phone-header .phone-link,
    .phone-header .whatsapp-link {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .phone-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .areas-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .whatsapp-number {
        font-size: 1.5rem;
        padding: 12px 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .phone-number {
        font-size: 1.8rem;
    }
    
    .whatsapp-number {
        font-size: 1.3rem;
        padding: 10px 20px;
    }
    
    .services,
    .areas,
    .contact,
    .impressum-section,
    .route-info,
    .areas-covered,
    .why-choose-us,
    .booking-section,
    .destination-info {
        padding: 60px 0;
    }
    
    .route-grid,
    .zones-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-content,
    .destination-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-steps {
        gap: 20px;
    }
    
    .step {
        gap: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .impressum-content {
        padding: 30px 20px;
    }
    
    .impressum-content h1 {
        font-size: 2rem;
    }
    
    .impressum-text h2 {
        font-size: 1.3rem;
    }
}
