/* /public/css/main.css */

/* --- Globale CSS-Variablen --- */
:root {
    --primary-color: #D60000;
    --text-dark: #212529;
    --text-medium: #333333;
    --text-light: #495057;
    --background-white: #ffffff;
    --background-gray: #f0f2f5;
    --whatsapp-green: #25d366;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-radius: 12px;
}


/* --- WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.whatsapp-float img {
    display: block;
}

.whatsapp-hint {
    position: fixed;
    bottom: 70px;
    right: 15px;
    background-color: var(--background-white);
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-size: 14px;
    z-index: 9998;
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

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


/* --- Footer Section --- */
.footer-section {
    background-color: var(--background-white);
    color: var(--text-dark);
    padding: 50px 0;
}

.footer-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.footer-link-list li a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer-link-list li a:hover {
    text-decoration: underline;
}

.footer-contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-copyright {
    color: var(--text-medium);
    font-size: 0.875rem;
}


/* --- Fleet Section --- */
.fleet-section {
    background-color: var(--background-white);
    padding: 60px 0;
    overflow: hidden;
}

.fleet-section .fleet-header {
    margin-bottom: 50px;
}

.fleet-section .fleet-title {
    font-size: clamp(2em, 5vw, 2.8em);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.fleet-section .fleet-subtitle {
    font-size: clamp(1.1em, 2.5vw, 1.3em);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.fleet-section .text-primary {
    color: var(--primary-color);
}

.fleet-section .fleet-slider {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.fleet-section .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
}

.fleet-section .fleet-card {
    background: var(--background-white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.fleet-section .swiper-slide-active .fleet-card {
    transform: scale(1.1);
}

.fleet-section .fleet-card__image {
    width: 100%;
    height: auto;
    display: block;
}

.fleet-section .fleet-card__body {
    padding: 20px;
}

.fleet-section .fleet-card__title {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.fleet-section .fleet-card__specs {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.fleet-section .spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1em;
    color: var(--text-light);
}

.fleet-section .spec__icon {
    width: 24px;
    height: 24px;
    filter: invert(30%);
}

.fleet-section .swiper-button-prev,
.fleet-section .swiper-button-next {
    color: var(--primary-color);
}

.fleet-section .fleet-header,
.fleet-section .fleet-slider {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fleet-section.is-visible .fleet-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.fleet-section.is-visible .fleet-slider {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

@media (max-width: 768px) {
    .fleet-section {
        padding: 40px 0;
    }
    .fleet-section .swiper-slide {
        width: 280px;
    }
    .fleet-section .swiper-slide-active .fleet-card {
         transform: scale(1.05);
    }
    .fleet-section .fleet-card__title {
        font-size: 1.2em;
    }
    .fleet-section .spec {
        font-size: 1em;
    }
}


/* --- Drivers Section --- */
.drivers-section {
    background: var(--background-gray);
    padding: 60px 0;
    overflow: hidden;
}

.drivers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.drivers-header h2 {
    font-size: clamp(2em, 5vw, 2.8em);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
}

.drivers-header .text-primary {
    color: var(--primary-color);
}

.drivers-header p {
    font-size: clamp(1.1em, 2.5vw, 1.3em);
    color: var(--text-light);
    margin-top: 15px;
}

.drivers-section .swiper-container-wrapper {
    position: relative;
}

.drivers-section .driver-slider {
    width: 100%;
    padding: 40px 0;
}

.drivers-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.drivers-section .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    opacity: 0.7;
}

.driver-card {
    width: 320px;
    background: var(--background-white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    padding: 20px;
}

.driver-card__image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--background-gray);
    margin-bottom: 20px;
}

.driver-card__name {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.driver-card__description {
    font-size: 1em;
    color: var(--text-light);
    line-height: 1.5;
    min-height: 90px;
}

.drivers-section .swiper-button-prev,
.drivers-section .swiper-button-next {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .drivers-section {
        padding: 40px 0;
    }
    .driver-card {
        width: 280px;
    }
    .driver-card__image {
        width: 120px;
        height: 120px;
    }
    .driver-card__name {
        font-size: 1.3em;
    }
    .driver-card__description {
        font-size: 0.9em;
        min-height: 80px;
    }
}
/* --- Trust Section --- */
:root {
    --trustpilot-green: #00b67a;
    --border-radius-m: 12px;
    --shadow-light: 0 8px 25px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.trust-section {
    background: radial-gradient(circle, #ffffff 0%, #f8f9fa 100%);
    border-top: 4px solid var(--primary-color);
    text-align: center;
    overflow: hidden;
}

.trust-section .fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.trust-section .fade-in-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.trust-section .trust-logo {
    width: 160px;
    margin-bottom: 25px;
}

.trust-section .trust-content h2 {
    font-size: clamp(1.6em, 5vw, 2.2em);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.trust-section .trust-content p {
    font-size: 1em;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.trust-section .text-primary { color: var(--primary-color); }

.trust-section .social-proof-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.trust-section .card {
    background-color: #ffffff;
    border-radius: var(--border-radius-m);
    box-shadow: var(--shadow-light);
    padding: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
}

.trust-section .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.trust-section .card--trustpilot {
    border-color: var(--trustpilot-green);
}
.trust-section .card--trustpilot:hover {
    box-shadow: 0 0 25px 0 rgba(0, 182, 122, 0.3);
}
.trust-section .card--google {
    border-image: linear-gradient(to right, #4285f4, #34a853, #fbbc05, #ea4335) 1;
    border-width: 2px;
    border-style: solid;
}
.trust-section .card--google:hover {
    box-shadow: 0 0 25px 0 rgba(66, 133, 244, 0.3);
}

.trust-section .card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.trust-section .card__logo { height: 40px; }
.trust-section .card__stars { height: 20px; }
.trust-section .card__body { text-align: center; }
.trust-section .card__rating-text {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}
.trust-section .card__link {
    font-size: 0.85em;
    color: var(--primary-color);
    text-decoration: underline;
}

.trust-section .service-banner {
    background: #ffffff;
    padding: 12px 18px;
    border-radius: var(--border-radius-m);
    box-shadow: var(--shadow-light);
    display: inline-flex;
    align-items: center;
    margin-top: 30px;
}
.trust-section .service-banner__icon {
    width: 35px;
    margin-right: 12px;
}
.trust-section .service-banner__text {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark);
}

@media (min-width: 992px) {
    .trust-section .trust-container {
        padding: 80px 40px;
    }
    .trust-section .trust-logo {
        width: 220px;
    }
    .trust-section .trust-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 60px;
        align-items: center;
        text-align: left;
        margin-bottom: 60px;
    }
    .trust-section .trust-content h2 {
        font-size: 2.5em;
    }
    .trust-section .trust-content p {
        font-size: 1.1em;
        margin-left: 0;
        margin-right: 0;
    }
    .trust-section .social-proof-grid {
        gap: 30px;
    }
    .trust-section .card {
        padding: 25px;
    }
    .trust-section .card__logo {
        height: 45px;
    }
    .trust-section .card__stars {
        height: 22px;
    }
    .trust-section .card__rating-text {
        font-size: 1.2em;
    }
    .trust-section .card__link {
        font-size: 0.9em;
    }
    .trust-section .service-banner {
        margin-top: 0;
        padding: 15px 20px;
    }
    .trust-section .service-banner__icon {
        width: 40px;
        margin-right: 15px;
    }
    .trust-section .service-banner__text {
        font-size: 1.1em;
    }
}
/* --- Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    border-top: 2px solid var(--primary-color);
}

.background-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0); /* --overlay-color */
}

/* Class for the Ken Burns effect on desktop */
.ken-burns {
    animation: kenBurnsEffect 40s infinite alternate; /* --animation-duration */
}

@keyframes kenBurnsEffect {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.top-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6); /* --button-bg-color */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 20;
}

/* Utility class to hide the preloading image */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    border: 0;
    margin: -1px;
    padding: 0;
    white-space: nowrap;
}
/* --- Day Trips Section --- */
.day-trips-section {
    padding: 60px 0;
    background-color: #f9f9f9; /* --background-light-gray */
}

.day-trips-header {
    margin-bottom: 50px;
}

.day-trips-header h2 {
    font-size: clamp(2em, 5vw, 2.8em);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.day-trips-header p {
    font-size: clamp(1.1em, 2.5vw, 1.3em);
    color: var(--text-light);
}

.trip-card {
    display: block;
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* --card-shadow */
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12); /* --card-shadow-hover */
}

.trip-card__image-wrapper {
    overflow: hidden;
    height: 280px;
}

.trip-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trip-card:hover .trip-card__image-wrapper img {
    transform: scale(1.05);
}

.trip-card__body {
    padding: 20px;
}

.trip-card__title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.trip-card:hover .trip-card__title {
    color: var(--primary-color);
}

.trip-card__description {
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.trip-card__price {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-color);
}
/* --- Service Box Grid & Modal --- */
.service-box {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.service-box:hover {
    transform: scale(1.05);
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
    transition: filter 0.3s ease-in-out;
}

.service-box:hover img {
    filter: brightness(100%);
}

.text-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 19px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .text-overlay {
        font-size: 16px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: red;
}
/* --- How It Works Section --- */
.how-it-works-section {
    background-color: var(--background-white);
    padding: 60px 0;
    overflow: hidden;
}

.how-it-works-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.how-it-works-header h2 {
    font-size: clamp(2em, 5vw, 2.8em);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.how-it-works-header .text-primary {
    color: var(--primary-color);
}

.how-it-works-header p {
    font-size: clamp(1.1em, 2.5vw, 1.3em);
    color: var(--text-light);
}

.how-it-works-grid {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.step-card {
    background: var(--background-white);
    border-top: 4px solid var(--primary-color);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-light);
    padding: 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.step-card::before {
    content: "0" counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 5em;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    z-index: 0;
}

.step-icon,
.step-title,
.step-description {
    position: relative;
    z-index: 1;
}

.step-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-title {
    color: var(--text-dark);
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: var(--text-light);
    font-size: 1.05em;
    line-height: 1.6;
}

.how-it-works-cta {
    margin-top: 60px;
}

.cta-button {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--text-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step,
.how-it-works-header,
.how-it-works-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.how-it-works-section.is-visible .how-it-works-header {
    opacity: 1;
    transform: translateY(0);
}

.how-it-works-section.is-visible .step,
.how-it-works-section.is-visible .how-it-works-cta {
    opacity: 1;
    transform: translateY(0);
}

.how-it-works-section.is-visible .step:nth-child(1) { transition-delay: 0.1s; }
.how-it-works-section.is-visible .step:nth-child(2) { transition-delay: 0.2s; }
.how-it-works-section.is-visible .step:nth-child(3) { transition-delay: 0.3s; }
.how-it-works-section.is-visible .step:nth-child(4) { transition-delay: 0.4s; }
.how-it-works-section.is-visible .step:nth-child(5) { transition-delay: 0.5s; }
.how-it-works-section.is-visible .step:nth-child(6) { transition-delay: 0.6s; }
.how-it-works-section.is-visible .how-it-works-cta { transition-delay: 0.7s; }
/* --- Contact Support Section --- */
#contact-support {
    background: linear-gradient(to bottom, #ffffff 0%, #e6f0fa 100%);
    padding: 80px 0;
}

.custom-card-border-atav-red {
    border-top: 4px solid var(--primary-color);
    background: var(--background-white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card-border-atav-red:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.custom-atav-red-text {
    color: var(--primary-color);
}

/* Note: .uk-text-dark and .uk-text-secondary might already be defined elsewhere. 
   It's safe to have them here, but they could be consolidated later. */
.uk-text-dark {
    color: var(--text-dark);
}

.uk-text-secondary {
    color: var(--text-light);
}
/* --- Hotels Vienna Section --- */
#hotels-vienna {
    background: linear-gradient(to bottom, #e6f0fa 0%, #ffffff 100%);
}

#hotels-vienna h2,
#hotels-vienna .hotels-vienna-footer-text {
    color: var(--text-dark);
}

#hotels-vienna h2 .text-primary {
    color: var(--primary-color);
}

#hotels-vienna .slider-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

#hotels-vienna .slider-item:hover {
    transform: scale(1.05);
}

#hotels-vienna .slider-item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    filter: brightness(80%);
    transition: filter 0.3s ease-in-out;
}

#hotels-vienna .slider-item:hover img {
    filter: brightness(90%);
}

#hotels-vienna .slider-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

#hotels-vienna .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.8s ease-out forwards;
}

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

#hotels-vienna h2.fade-in { animation-delay: 0s; }
#hotels-vienna .uk-text-large.fade-in { animation-delay: 0.4s; }
#hotels-vienna .uk-margin-large-top.fade-in:first-of-type { animation-delay: 0.8s; }
#hotels-vienna .uk-margin-large-top.fade-in:last-of-type { animation-delay: 1.2s; }

@media (max-width: 768px) {
    #hotels-vienna {
        padding: 40px 0;
    }
    #hotels-vienna .slider-item img {
        height: 250px;
    }
    #hotels-vienna .slider-text {
        font-size: 16px;
    }
    #hotels-vienna .uk-text-large {
        font-size: 1.1em;
        max-width: 90%;
    }
}
/* --- Home Page Specifics --- */
.hero-section .text-highlight {
    color: #FF6200; /* Dies kann nicht einfach durch var(--primary-color) ersetzt werden, da es eine andere Farbe ist. */
}

.hero__overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.hero__header {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 20px;
    color: var(--background-white);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 850px;
    margin: 0 auto 25px auto;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
}

.hero__header h1,
.hero__header p {
    color: var(--background-white);
}

.hero__header h1 {
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.hero__header p {
    margin-bottom: 0;
}

.booking-form-wrapper {
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.8s forwards;
}

.booking-form {
    align-items: center;
}

.booking-form__icon {
    height: 40px;
    width: 40px;
}

.booking-form__separator {
    text-align: center;
    padding-top: 5px;
}

.benefits-list {
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.1s forwards;
}

.benefits-list li {
    color: var(--background-white);
    padding: 5px 10px;
    margin: 5px 10px;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.benefits-list li > span {
    margin-right: 8px;
    color: #FF6200; /* Selbe Highlight-Farbe wie oben */
}

.benefits-list li strong {
    color: var(--background-white);
    font-weight: 600;
    font-size: 1rem;
}

#our-premium-services {
    color: var(--text-dark);
}

.proud-section-bg {
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
}
.proud-section-title {
    line-height: 1.2;
}
.proud-section-subtitle {
    display: block;
    font-size: 1.2em;
    color: #ffe082;
}
.proud-section-text {
    max-width: 700px;
    margin: 0 auto;
}