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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Bewerber Hero Section */
.bewerber-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e2347 0%, #2a3166 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.bewerber-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.bewerber-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Bewerber Hero Text */
.bewerber-hero-text {
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.bewerber-hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.bewerber-hero-title .highlight {
    color: #f17855;
    position: relative;
    display: inline-block;
    font-weight: 800;
    white-space: nowrap;
}

.bewerber-hero-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #f17855 0%, #ff9068 100%);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(241, 120, 85, 0.4);
}

.bewerber-hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #e8e8e8;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Bewerber Hero Image */
.bewerber-hero-image {
    position: relative;
    height: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    animation: fadeInRight 1s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bewerber-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bewerber-hero-image:hover img {
    transform: scale(1.05);
}

.bewerber-hero-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(241, 120, 85, 0.15) 0%,
        rgba(30, 35, 71, 0.3) 100%
    );
    pointer-events: none;
}

/* Dekorative Elemente */
.bewerber-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(241, 120, 85, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.bewerber-hero::after {
    content: "";
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(241, 120, 85, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Animationen */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bewerber-hero-container {
        padding: 0 30px;
    }

    .bewerber-hero-content {
        gap: 60px;
    }

    .bewerber-hero-title {
        font-size: 2.8rem;
    }

    .bewerber-hero-image {
        height: 480px;
    }
}

@media (max-width: 1024px) {
    .bewerber-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .bewerber-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bewerber-hero-title {
        font-size: 2.5rem;
    }

    .bewerber-hero-subtitle {
        font-size: 1.15rem;
    }

    .bewerber-hero-image {
        height: 450px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .bewerber-hero-container {
        padding: 0 20px;
    }

    .bewerber-hero {
        padding: 50px 0;
    }

    .bewerber-hero-content {
        gap: 40px;
    }

    .bewerber-hero-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .bewerber-hero-subtitle {
        font-size: 1.05rem;
    }

    .bewerber-hero-image {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .bewerber-hero-container {
        padding: 0 15px;
    }

    .bewerber-hero {
        padding: 40px 0;
    }

    .bewerber-hero-content {
        gap: 30px;
    }

    .bewerber-hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .bewerber-hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .bewerber-hero-image {
        height: 300px;
        border-radius: 16px;
    }

    .bewerber-hero-title .highlight::after {
        height: 4px;
        bottom: -6px;
    }
}

/*-- =============================== ANGEBOTE SECTION =============================== */

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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Karriere Section */
.karriere-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInDown 0.8s ease-out;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 4rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1e2347 0%, #f17855 50%, #1e2347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(241, 120, 85, 0.1);
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: -0.3px;
}

/* Cards Wrapper */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.card-large {
    grid-column: span 2;
}

/* Card Styles */
.card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f17855, #1e2347);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

/* Card Image */
.card-image-wrapper {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(241, 120, 85, 0.9) 0%,
        rgba(30, 35, 71, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card:nth-child(2) .card-overlay {
    background: linear-gradient(
        135deg,
        rgba(30, 35, 71, 0.9) 0%,
        rgba(241, 120, 85, 0.9) 100%
    );
}

.card:nth-child(3) .card-overlay {
    background: linear-gradient(
        135deg,
        rgba(241, 120, 85, 0.85) 0%,
        rgba(255, 144, 104, 0.9) 100%
    );
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Card Content */
.card-content {
    padding: 40px;
}

.card-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: #1e2347;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.card-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-description {
    font-family: "Inter", sans-serif;
    color: #555;
    margin-bottom: 28px;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* Card Features */
.card-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9ff;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: #fff;
    border-color: #f17855;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(241, 120, 85, 0.1);
}

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

.feature-text {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #444;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Card Footer */
.card-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.view-all-btn {
    flex: 1;
    background: linear-gradient(135deg, #f17855 0%, #ff9068 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    letter-spacing: 0.3px;
}

.view-all-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.4);
}

.card:nth-child(2) .view-all-btn {
    background: linear-gradient(135deg, #1e2347 0%, #3d4574 100%);
}

.card:nth-child(2) .view-all-btn:hover {
    box-shadow: 0 10px 30px rgba(30, 35, 71, 0.4);
}

.card:nth-child(3) .view-all-btn {
    background: linear-gradient(135deg, #f17855 0%, #1e2347 100%);
}

.card:nth-child(3) .view-all-btn:hover {
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.4);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card-large {
        grid-column: span 1;
    }

    .card-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }

    .card-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .karriere-section {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }

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

    .section-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .card-image-wrapper {
        height: 250px;
    }

    .card-content {
        padding: 25px;
    }

    .card-title {
        font-size: 2rem;
    }

    .card-description {
        font-size: 1.05rem;
    }

    .card-footer {
        flex-direction: column;
    }

    .view-all-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .karriere-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .card {
        border-radius: 20px;
    }

    .card-image-wrapper {
        height: 220px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 1.75rem;
        gap: 10px;
    }

    .card-icon {
        font-size: 2rem;
    }

    .card-description {
        font-size: 1rem;
    }

    .card-overlay {
        font-size: 70px;
    }

    .view-all-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }
}

/*================================== DIENSTLEISTUNGEN SECTION ======================================= */

/* ============================================   DIENSTLEISTUNGEN - GERMAN OSTAD STYLES ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Poppins",
        "Inter",
        "Segoe UI",
        -apple-system,
        BlinkMacSystemFont,
        "Roboto",
        sans-serif;
    background: #ffffff;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   SECTION HEADERS (SHARED)
============================================ */
.section-header,
.karriere-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(241, 120, 85, 0.1),
        rgba(30, 35, 71, 0.1)
    );
    color: #f17855;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    border: 1px solid rgba(241, 120, 85, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.section-header h2,
.karriere-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #1e2347;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInDown 0.8s ease-out 0.4s both;
    letter-spacing: -0.3px;
}

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

/* ============================================
   DIENSTLEISTUNGEN SECTION
============================================ */
.dienstleistungen-section {
    padding: 120px 20px;
    background: #ffffff;
    position: relative;
}

.services-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f17855 0%, #1e2347 50%, #f17855 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #f17855;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(241, 120, 85, 0.2);
}

.timeline-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #1e2347;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(30, 35, 71, 0.2);
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
}

/* Timeline Connector Dot */
.service-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border: 4px solid #f17855;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 0 10px rgba(241, 120, 85, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover::before {
    width: 40px;
    height: 40px;
    border-width: 5px;
    box-shadow: 0 0 0 15px rgba(241, 120, 85, 0.2);
}

.service-card[data-service="2"]::before {
    border-color: #1e2347;
}
.service-card[data-service="3"]::before {
    border-color: #f17855;
}
.service-card[data-service="4"]::before {
    border-color: #1e2347;
}
.service-card[data-service="5"]::before {
    border-color: #f17855;
}
.service-card[data-service="6"]::before {
    border-color: #1e2347;
}

/* Alternating Layout */
.service-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-card:nth-child(even) .service-image {
    order: 2;
}

.service-card:nth-child(even) .service-content {
    order: 1;
}

.service-card[data-service="1"] {
    animation-delay: 0.1s;
}
.service-card[data-service="2"] {
    animation-delay: 0.2s;
}
.service-card[data-service="3"] {
    animation-delay: 0.3s;
}
.service-card[data-service="4"] {
    animation-delay: 0.4s;
}
.service-card[data-service="5"] {
    animation-delay: 0.5s;
}
.service-card[data-service="6"] {
    animation-delay: 0.6s;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(241, 120, 85, 0.2);
}

.service-number {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f17855, #ff9068);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.4);
}

.service-card:nth-child(even) .service-number {
    left: auto;
    right: 30px;
}

.service-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #f17855, #ff9068);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(241, 120, 85, 0.4);
}

.service-badge.badge-green {
    background: linear-gradient(135deg, #1e2347, #3d4574);
}

.service-badge.badge-red {
    background: linear-gradient(135deg, #f17855, #ff9068);
}

.service-badge.badge-orange {
    background: linear-gradient(135deg, #f17855, #ff7d45);
}

.service-badge.badge-purple {
    background: linear-gradient(135deg, #1e2347, #3a3e68);
}

.service-badge.badge-pink {
    background: linear-gradient(135deg, #f17855, #ff9068);
}

.service-content {
    padding: 40px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f17855, #ff9068);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.3);
}

.service-icon.icon-green {
    background: linear-gradient(135deg, #1e2347, #3d4574);
}

.service-icon.icon-red {
    background: linear-gradient(135deg, #f17855, #ff9068);
}

.service-icon.icon-orange {
    background: linear-gradient(135deg, #f17855, #ff7d45);
}

.service-icon.icon-purple {
    background: linear-gradient(135deg, #1e2347, #3a3e68);
}

.service-icon.icon-pink {
    background: linear-gradient(135deg, #f17855, #ff9068);
}

.service-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1e2347;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.service-content > p {
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: -0.2px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #2d3748;
    font-size: 1rem;
    font-weight: 500;
}

.service-features li i {
    color: #f17855;
    font-size: 1.2rem;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f17855, #ff9068);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.service-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.service-button:hover::before {
    width: 400px;
    height: 400px;
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(241, 120, 85, 0.5);
}

.service-button span,
.service-button i {
    position: relative;
    z-index: 1;
}

.service-button i {
    transition: transform 0.3s ease;
}

.service-button:hover i {
    transform: translateX(5px);
}

.service-button.btn-green {
    background: linear-gradient(135deg, #1e2347, #3d4574);
    box-shadow: 0 10px 30px rgba(30, 35, 71, 0.3);
}

.service-button.btn-green:hover {
    box-shadow: 0 15px 45px rgba(30, 35, 71, 0.5);
}

.service-button.btn-red {
    background: linear-gradient(135deg, #f17855, #ff9068);
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.3);
}

.service-button.btn-red:hover {
    box-shadow: 0 15px 45px rgba(241, 120, 85, 0.5);
}

.service-button.btn-orange {
    background: linear-gradient(135deg, #f17855, #ff7d45);
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.3);
}

.service-button.btn-orange:hover {
    box-shadow: 0 15px 45px rgba(241, 120, 85, 0.5);
}

.service-button.btn-purple {
    background: linear-gradient(135deg, #1e2347, #3a3e68);
    box-shadow: 0 10px 30px rgba(30, 35, 71, 0.3);
}

.service-button.btn-purple:hover {
    box-shadow: 0 15px 45px rgba(30, 35, 71, 0.5);
}

.service-button.btn-pink {
    background: linear-gradient(135deg, #f17855, #ff9068);
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.3);
}

.service-button.btn-pink:hover {
    box-shadow: 0 15px 45px rgba(241, 120, 85, 0.5);
}

/* ============================================
   DEUTSCHKURSE SECTION
============================================ */
.deutschkurse-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.deutschkurse-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(241, 120, 85, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.deutschkurse-section::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(30, 35, 71, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(3deg);
    }
}

.deutschkurse-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.deutschkurse-content {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.dk-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f17855, #ff9068);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.4);
}

.dk-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(241, 120, 85, 0.1),
        rgba(30, 35, 71, 0.1)
    );
    color: #f17855;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 120, 85, 0.2);
}

.deutschkurse-text h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 900;
    color: #1e2347;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.deutschkurse-text p {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: -0.2px;
}

.dk-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.dk-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        rgba(241, 120, 85, 0.05),
        rgba(30, 35, 71, 0.05)
    );
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 600;
    color: #f17855;
    transition: all 0.3s ease;
}

.dk-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(241, 120, 85, 0.2);
}

.dk-feature-item i {
    font-size: 1.2rem;
}

.dk-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f17855, #ff9068);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.dk-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.dk-button:hover::before {
    width: 400px;
    height: 400px;
}

.dk-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(241, 120, 85, 0.6);
}

.dk-button span,
.dk-button i {
    position: relative;
    z-index: 1;
}

.deutschkurse-image {
    position: relative;
}

.deutschkurse-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.deutschkurse-image:hover img {
    transform: scale(1.05);
}

.dk-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.dk-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatRandom 4s ease-in-out infinite;
}

.dk-floating-icon i {
    font-size: 1.5rem;
    color: #f17855;
}

.dk-floating-icon:nth-child(1) {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.dk-floating-icon:nth-child(2) {
    top: 60%;
    left: -8%;
    animation-delay: 1s;
}

.dk-floating-icon:nth-child(3) {
    top: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes floatRandom {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ============================================
   KARRIERE SECTION
============================================ */
.karriere-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

.karriere-container {
    max-width: 1400px;
    margin: 0 auto;
}

.karriere-featured {
    margin-bottom: 50px;
}

.karriere-featured:last-of-type {
    margin-bottom: 0;
}

.karriere-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.karriere-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(241, 120, 85, 0.15);
}

.karriere-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Alternating Layout for Karriere Cards */
.karriere-featured:nth-child(even) .karriere-card.featured {
    grid-template-columns: 1fr 1fr;
}

.karriere-featured:nth-child(even) .karriere-image {
    order: 2;
}

.karriere-featured:nth-child(even) .karriere-content {
    order: 1;
}

.karriere-image {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.karriere-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.karriere-card:hover .karriere-image img {
    transform: scale(1.1);
}

.karriere-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.karriere-badge.badge-blue {
    background: linear-gradient(135deg, #1e2347, #3d4574);
    color: white;
}

.karriere-badge.badge-pink {
    background: linear-gradient(135deg, #f17855, #ff9068);
    color: white;
}

.karriere-badge.badge-purple {
    background: linear-gradient(135deg, #1e2347, #3a3e68);
    color: white;
}

.karriere-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.karriere-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e2347;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -1px;
}

.karriere-content p {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: -0.2px;
}

.karriere-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tag i {
    color: #f17855;
}

.karriere-footer {
    display: flex;
    gap: 15px;
    padding-top: 25px;
    border-top: 2px solid #f1f5f9;
}

.karriere-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.karriere-button.primary {
    background: linear-gradient(135deg, #f17855, #ff9068);
    color: white;
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.4);
}

.karriere-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(241, 120, 85, 0.6);
}

.karriere-button.secondary {
    background: transparent;
    color: #f17855;
    border: 2px solid #f17855;
}

.karriere-button.secondary:hover {
    background: #f17855;
    color: white;
}

.karriere-button span,
.karriere-button i {
    position: relative;
    z-index: 1;
}

.karriere-more {
    text-align: center;
    margin-top: 60px;
}

.more-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: white;
    color: #f17855;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(241, 120, 85, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.more-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f17855, #ff9068);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.more-button:hover::before {
    opacity: 1;
}

.more-button:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(241, 120, 85, 0.3);
}

.more-button span,
.more-button i {
    position: relative;
    z-index: 1;
}

.more-button i {
    transition: transform 0.3s ease;
}

.more-button:hover i {
    transform: translateY(5px);
}

/* ============================================
   SERVICE MODAL
============================================ */
.service-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 35, 71, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.service-modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal {
    background: white;
    border-radius: 30px;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    margin: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.service-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.service-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.service-modal-header {
    background: linear-gradient(135deg, #f17855, #ff9068);
    padding: 60px;
    color: white;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 5;
}

.service-modal-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-modal-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.service-modal-body {
    padding: 60px;
}

.service-modal-body h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #1e2347;
    margin: 40px 0 20px 0;
    letter-spacing: -0.5px;
}

.service-modal-body h3:first-child {
    margin-top: 0;
}

.service-modal-body p {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.service-modal-body ul {
    list-style: none;
    margin: 20px 0;
}

.service-modal-body li {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.service-modal-body li:hover {
    background: linear-gradient(
        135deg,
        rgba(241, 120, 85, 0.05),
        rgba(30, 35, 71, 0.05)
    );
    transform: translateX(5px);
}

.service-modal-body strong {
    color: #f17855;
    font-weight: 700;
}

/* Scrollbar */
.service-modal::-webkit-scrollbar {
    width: 10px;
}

.service-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.service-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f17855, #ff9068);
    border-radius: 10px;
}

.service-modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff9068, #f17855);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .services-timeline,
    .deutschkurse-container,
    .karriere-container {
        max-width: 1400px;
    }
}

/* Large Devices (1200px - 1399px) */
@media (max-width: 1399px) {
    .service-card {
        gap: 40px;
    }

    .deutschkurse-content {
        gap: 50px;
        padding: 50px;
    }

    .karriere-content {
        padding: 45px;
    }
}

/* Medium-Large Devices (992px - 1199px) */
@media (max-width: 1199px) {
    .section-header h2,
    .karriere-header h2 {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }

    .service-card {
        gap: 35px;
    }

    .service-content {
        padding: 35px;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .deutschkurse-content {
        gap: 45px;
        padding: 45px;
    }

    .deutschkurse-text h2 {
        font-size: clamp(2.2rem, 4vw, 3.2rem);
    }

    .karriere-content h3 {
        font-size: 2.2rem;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .dienstleistungen-section,
    .deutschkurse-section,
    .karriere-section {
        padding: 80px 25px;
    }

    .section-header,
    .karriere-header {
        margin-bottom: 60px;
    }

    .section-header h2,
    .karriere-header h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .services-container {
        gap: 60px;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .service-card::before {
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .service-card:hover::before {
        width: 35px;
        height: 35px;
    }

    .service-card:nth-child(even) .service-image,
    .service-card:nth-child(even) .service-content {
        order: unset;
    }

    .service-number {
        left: 25px !important;
        right: auto !important;
        top: 25px;
    }

    .service-image {
        height: 320px;
    }

    .service-content {
        padding: 35px 30px;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-line::before,
    .timeline-line::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .deutschkurse-content {
        grid-template-columns: 1fr;
        padding: 45px 35px;
        gap: 40px;
    }

    .deutschkurse-text h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .deutschkurse-image img {
        height: 400px;
    }

    .karriere-card.featured {
        grid-template-columns: 1fr;
    }

    .karriere-featured:nth-child(even) .karriere-image,
    .karriere-featured:nth-child(even) .karriere-content {
        order: unset;
    }

    .karriere-image {
        min-height: 320px;
    }

    .karriere-content {
        padding: 40px 35px;
    }

    .karriere-content h3 {
        font-size: 2rem;
    }

    .karriere-footer {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    .dienstleistungen-section,
    .deutschkurse-section,
    .karriere-section {
        padding: 60px 20px;
    }

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

    .section-badge {
        font-size: 0.85rem;
        padding: 10px 22px;
        gap: 8px;
    }

    .section-header h2,
    .karriere-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .section-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.15rem);
    }

    .services-container {
        gap: 50px;
    }

    .service-card {
        border-radius: 20px;
    }

    .service-card::before {
        width: 24px;
        height: 24px;
        border-width: 3px;
        box-shadow: 0 0 0 8px rgba(241, 120, 85, 0.1);
        top: -12px;
    }

    .service-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        left: 20px !important;
        top: 20px;
    }

    .service-image {
        height: 280px;
    }

    .service-content {
        padding: 30px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        border-radius: 15px;
    }

    .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .service-content > p {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .service-features li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .service-button {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .timeline-line {
        width: 3px;
    }

    .deutschkurse-content {
        padding: 40px 30px;
        gap: 35px;
        border-radius: 25px;
    }

    .dk-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .dk-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .deutschkurse-text h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
        margin-bottom: 15px;
    }

    .deutschkurse-text p {
        font-size: 1.08rem;
        margin-bottom: 25px;
    }

    .dk-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .dk-feature-item {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .dk-button {
        padding: 16px 40px;
        font-size: 1.05rem;
    }

    .deutschkurse-image img {
        height: 350px;
        border-radius: 18px;
    }

    .dk-floating-icon {
        display: none;
    }

    .karriere-featured {
        margin-bottom: 40px;
    }

    .karriere-card {
        border-radius: 25px;
    }

    .karriere-image {
        min-height: 280px;
    }

    .karriere-badge {
        top: 20px;
        right: 20px;
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .karriere-content {
        padding: 35px 30px;
    }

    .karriere-content h3 {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }

    .karriere-content p {
        font-size: 1.08rem;
        margin-bottom: 20px;
    }

    .karriere-tags {
        gap: 10px;
        margin-bottom: 25px;
    }

    .tag {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .karriere-footer {
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
    }

    .karriere-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
    }

    .karriere-more {
        margin-top: 50px;
    }

    .more-button {
        padding: 18px 40px;
        font-size: 1.08rem;
    }

    .service-modal-icon {
        width: 85px;
        height: 85px;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .service-modal-close {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 20px;
        right: 20px;
    }

    .service-modal-header {
        padding: 40px 30px;
    }

    .service-modal-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .service-modal-body {
        padding: 35px 30px;
    }

    .service-modal-body h3 {
        font-size: 1.6rem;
        margin: 35px 0 18px 0;
    }

    .service-modal-body p {
        font-size: 1.08rem;
    }

    .service-modal-body li {
        padding: 12px;
        font-size: 1.02rem;
    }
}

/* Mobile Devices (320px - 575px) */
@media (max-width: 575px) {
    .dienstleistungen-section,
    .deutschkurse-section,
    .karriere-section {
        padding: 50px 15px;
    }

    .section-header,
    .karriere-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
        gap: 6px;
    }

    .section-header h2,
    .karriere-header h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
        line-height: 1.6;
    }

    .services-container {
        gap: 45px;
    }

    .service-card {
        border-radius: 18px;
    }

    .service-card::before {
        width: 20px;
        height: 20px;
        border-width: 3px;
        box-shadow: 0 0 0 6px rgba(241, 120, 85, 0.08);
        top: -10px;
    }

    .service-card:hover::before {
        width: 26px;
        height: 26px;
    }

    .service-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        left: 15px !important;
        top: 15px;
        border-radius: 12px;
    }

    .service-image {
        height: 240px;
    }

    .service-badge {
        bottom: 15px;
        left: 15px;
        padding: 8px 20px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .service-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.25;
    }

    .service-content > p {
        font-size: 1rem;
        margin-bottom: 18px;
        line-height: 1.6;
    }

    .service-features {
        margin-bottom: 20px;
    }

    .service-features li {
        font-size: 0.95rem;
        padding: 8px 0;
        gap: 10px;
    }

    .service-features li i {
        font-size: 1.1rem;
    }

    .service-button {
        padding: 13px 28px;
        font-size: 0.95rem;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .timeline-line {
        width: 2px;
        left: 50%;
    }

    .timeline-line::before,
    .timeline-line::after {
        width: 16px;
        height: 16px;
        box-shadow: 0 0 0 6px rgba(241, 120, 85, 0.15);
    }

    .deutschkurse-content {
        padding: 30px 20px;
        gap: 30px;
        border-radius: 20px;
    }

    .dk-icon-wrapper {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 18px;
        border-radius: 15px;
    }

    .dk-badge {
        font-size: 0.8rem;
        padding: 7px 18px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .deutschkurse-text h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 12px;
    }

    .deutschkurse-text p {
        font-size: 1.02rem;
        margin-bottom: 22px;
        line-height: 1.7;
    }

    .dk-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }

    .dk-feature-item {
        padding: 9px 16px;
        font-size: 0.9rem;
        gap: 8px;
        border-radius: 12px;
    }

    .dk-feature-item i {
        font-size: 1.1rem;
    }

    .dk-button {
        padding: 15px 35px;
        font-size: 1rem;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .deutschkurse-image img {
        height: 280px;
        border-radius: 15px;
    }

    .karriere-featured {
        margin-bottom: 35px;
    }

    .karriere-card {
        border-radius: 20px;
    }

    .karriere-image {
        min-height: 240px;
    }

    .karriere-badge {
        top: 15px;
        right: 15px;
        padding: 8px 18px;
        font-size: 0.8rem;
        gap: 6px;
        border-radius: 20px;
    }

    .karriere-badge i {
        font-size: 0.9rem;
    }

    .karriere-content {
        padding: 28px 22px;
    }

    .karriere-content h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .karriere-content p {
        font-size: 1.02rem;
        margin-bottom: 18px;
        line-height: 1.7;
    }

    .karriere-tags {
        gap: 8px;
        margin-bottom: 22px;
    }

    .tag {
        font-size: 0.8rem;
        padding: 7px 14px;
        gap: 6px;
    }

    .tag i {
        font-size: 0.9rem;
    }

    .karriere-footer {
        flex-direction: column;
        gap: 10px;
        padding-top: 18px;
    }

    .karriere-button {
        padding: 13px 26px;
        font-size: 0.95rem;
        gap: 8px;
        width: 100%;
        justify-content: center;
        border-radius: 40px;
    }

    .karriere-more {
        margin-top: 45px;
    }

    .more-button {
        padding: 16px 35px;
        font-size: 1.02rem;
        gap: 12px;
        width: 100%;
        max-width: 340px;
        border-radius: 40px;
    }

    .service-modal {
        border-radius: 18px;
        max-height: 92vh;
    }

    .service-modal-icon {
        width: 75px;
        height: 75px;
        font-size: 2.2rem;
        margin-bottom: 18px;
        border-radius: 18px;
    }

    .service-modal-close {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        top: 18px;
        right: 18px;
    }

    .service-modal-header {
        padding: 35px 22px;
        border-radius: 18px 18px 0 0;
    }

    .service-modal-header h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        line-height: 1.25;
    }

    .service-modal-body {
        padding: 30px 22px;
    }

    .service-modal-body h3 {
        font-size: 1.45rem;
        margin: 30px 0 15px 0;
    }

    .service-modal-body h3:first-child {
        margin-top: 0;
    }

    .service-modal-body p {
        font-size: 1.02rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .service-modal-body ul {
        margin: 18px 0;
    }

    .service-modal-body li {
        padding: 10px;
        margin-bottom: 8px;
        font-size: 0.97rem;
        gap: 12px;
        border-radius: 8px;
    }

    .service-modal-body strong {
        font-size: 1rem;
    }
}

/* Extra Small Devices (< 375px) */
@media (max-width: 374px) {
    .section-header h2,
    .karriere-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .service-card {
        border-radius: 15px;
    }

    .service-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 20px 16px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .service-content h3 {
        font-size: 1.25rem;
    }

    .service-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .deutschkurse-content {
        padding: 25px 16px;
    }

    .deutschkurse-text h2 {
        font-size: 1.7rem;
    }

    .dk-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .deutschkurse-image img {
        height: 260px;
    }

    .karriere-content {
        padding: 24px 18px;
    }

    .karriere-content h3 {
        font-size: 1.45rem;
    }

    .karriere-button {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .more-button {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .service-modal-header {
        padding: 30px 18px;
    }

    .service-modal-body {
        padding: 26px 18px;
    }
}
