/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a3a52;
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border: 2px solid transparent;
    border-radius: 0.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-gold {
    background-color: #F5A623;
    color: #1a3a52;
    border-color: #F5A623;
}

.btn-gold:hover {
    background-color: #E89A1B;
    border-color: #E89A1B;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: white;
    color: #1a3a52;
    border-color: #F5A623;
}

.btn-outline:hover {
    background-color: #f0f0f0;
    border-color: #E89A1B;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2em;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    position: relative;
}

/* Logo – Text-Logo in Orange */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
    flex: 0 0 auto;
}

.logo:hover {
    opacity: 0.8;
}

.logo-main {
    font-weight: 800;
    font-size: 1.5rem;
    color: #F5A623;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 1.2rem;
    }
}

/* Navigation */
.nav-desktop {
    display: none;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a3a52;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #F5A623;
    border-color: #F5A623;
    background-color: white;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a3a52;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #F5A623;
}

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a3a52;
    text-decoration: none;
}

.phone-icon {
    font-size: 1.2rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a3a52;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
}

.nav-mobile.active {
    display: flex;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 58, 82, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: white;
    width: 100%;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero-title .highlight {
    color: #F5A623;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: white;
}

.badge-icon {
    font-size: 1.3rem;
}

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

/* ===== SECTIONS ===== */
section {
    padding: 3rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
}

section:nth-child(even) {
    background-color: #f8fafc;
}

.section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #F5A623;
    margin-bottom: 0.5rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 3rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background-color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-card {
    text-align: center;
}

.trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.trust-card h3 {
    font-size: 1.1rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ===== LEISTUNGEN SECTION ===== */
.leistungen-section {
    background-color: #E8F0F5;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.leistung-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.6rem;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.leistung-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.leistung-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.leistung-card h3 {
    font-size: 1rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.leistung-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badge-small {
    display: inline-block;
    background-color: #F5A623;
    color: #1a3a52;
    padding: 0.3rem 0.8rem;
    border-radius: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    background-color: white;
}

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

.step-card {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.step-card h3 {
    font-size: 1.1rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 0.6rem;
}

.steps-cta h3 {
    font-size: 1.3rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.steps-cta p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
    background-color: #E8F0F5;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.6rem;
    border: 1px solid #e0e0e0;
}

.audience-card h3 {
    font-size: 1.2rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.audience-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    font-size: 0.9rem;
    color: #666;
    padding: 0.4rem 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: white;
}

.testimonials-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-item {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 5px solid #F5A623;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-meta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    font-weight: 700;
    color: #1a3a52;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #666;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #1a3a52;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #999;
}

/* ===== CONTACT SECTION ===== */
.contact-section-new {
    background-color: white;
    padding: 4rem 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

@media (max-width: 992px) {
    .contact-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.team-image-wrapper {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direct-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.direct-icon {
    width: 50px;
    height: 50px;
    background-color: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.direct-text p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.direct-text a {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3a52;
    text-decoration: none;
    transition: color 0.2s;
}

.direct-text a:hover {
    color: #F5A623;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
    }
}

.contact-form input, 
.contact-form select {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.contact-form input:focus, 
.contact-form select:focus {
    outline: none;
    border-color: #F5A623;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: white;
    border-top: 1px solid #e0e0e0;
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    font-size: 1rem;
    color: #1a3a52;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    color: #666;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #F5A623;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
}

/* ===== VEHICLE SECTION ===== */
.vehicle-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    background-color: white;
}

@media (max-width: 768px) {
    .vehicle-section {
        grid-template-columns: 1fr;
    }
}

.vehicle-image-wrapper {
    overflow: hidden;
    height: 500px;
}

.vehicle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-content {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
}

.vehicle-content h2 {
    font-size: 1.8rem;
    color: #1a3a52;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vehicle-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.vehicle-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vehicle-features li {
    font-size: 0.95rem;
    color: #1a3a52;
    font-weight: 500;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 1.3rem;
    color: #1a3a52;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-page p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.legal-page a {
    color: #1a5a8f;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #F5A623;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #1a5a8f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.back-link:hover {
    color: #F5A623;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .nav-mobile {
        width: 100%;
    }
}

/* ===== LOGO SECTION FULL ===== */
.logo-section-full {
    background-color: #000;
    padding: 4rem 0;
    text-align: center;
}

.logo-full-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.logo-full-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.cookie-modal {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-modal-header {
    background-color: #1a3a52;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cookie-modal-body {
    padding: 2rem;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-modal-body a {
    color: #F5A623;
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 1.5rem;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-modal-footer .btn {
    width: 100%;
    justify-content: center;
}
