@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --gold: #C4A028; /* Dunkler für Text und Hauptelemente */
    --gold-light: #D4B037; /* Etwas heller für Hover-Effekte */
    --gold-dark: #A68800; /* Noch dunkler für Kontraste */
    --gold-glow: rgba(212, 175, 55, 0.3); /* Für Gloweffekte */
    --black: #0A0A0A;
    --dark-gray: #121212;
    --medium-gray: #1E1E1E;
}

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

body {
    background-color: var(--black);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Elegant Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--black);
}

::-webkit-scrollbar-thumb {
    background-color: var(--gold-dark);
    border-radius: 5px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--gold);
}

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

/* ===== HEADER SECTION ===== */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #12121270 0%, var(--black) 80%);
}

.header-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
    max-width: 1000px;
}

.logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 100;
    width: 25%;
    height: 30%;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(196, 160, 40, 0.3));
}

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

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 32px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 600;
    margin: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--gold);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.btn:hover {
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(196, 160, 40, 0.15);
}

.btn:hover:before {
    width: 100%;
}

/* Floating Particles Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0.2;
    box-shadow: 0 0 10px 2px var(--gold-glow);
}

/* BG Lines Animation */
.bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.07;
}

.line {
    position: absolute;
    background-color: var(--gold);
    transform-origin: 0% 0%;
    box-shadow: 0 0 15px var(--gold-glow);
}

.horizontal-line {
    height: 1px;
    width: 100%;
}

.vertical-line {
    width: 1px;
    height: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    z-index: 5;
}

.scroll-indicator p {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 500;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollArrow 2.5s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 2px 2px 5px var(--gold-glow);
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* ===== SECTION STYLING ===== */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold-glow);
}

/* Glowing text effect */
.glow {
    text-shadow: 0 0 12px rgba(196, 160, 40, 0.4);
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(196, 160, 40, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(196, 160, 40, 0.5), 0 0 20px rgba(196, 160, 40, 0.2);
    }
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 500px;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    border: 1px solid var(--gold-dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    z-index: 1;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-img:hover {
    transform: translateY(-10px) translateX(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-img:hover::before {
    opacity: 1;
    transform: scale(1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.about-text {
    opacity: 0;
    transform: translateX(30px);
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--dark-gray);
    background-image: linear-gradient(to bottom, var(--black), var(--dark-gray));
}

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

.service-card {
    background-color: var(--black);
    padding: 40px 30px;
    border: 1px solid var(--gold-dark);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--gold);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 160, 40, 0.1) 0%, transparent 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    margin-bottom: 1.8rem;
    display: inline-block;
    color: var(--gold);
    font-size: 3.5rem;
    line-height: 1;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    text-shadow: 0 0 20px var(--gold-glow);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
    width: 80px;
}

.service-desc {
    line-height: 1.7;
    color: var(--gold-light);
    flex-grow: 1;
    font-size: 1.02rem;
}

/* ===== JOBS SECTION ===== */
.jobs {
    background-color: var(--black);
    position: relative;
    background-image: radial-gradient(circle at center, #12121270 0%, var(--black) 100%);
}

.jobs-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.job-card {
    background-color: var(--dark-gray);
    border: 1px solid var(--gold-dark);
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.job-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(10, 10, 10, 0.3);
    border-color: var(--gold);
}

.job-header {
    background-color: var(--black);
    padding: 25px;
    border-bottom: 1px solid var(--gold-dark);
    position: relative;
    transition: all 0.3s ease;
}

.job-card:hover .job-header {
    background-color: rgba(196, 160, 40, 0.1);
}

.job-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--gold-dark);
    color: var(--black);
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.job-card:hover .job-tag {
    background-color: var(--gold);
    box-shadow: 0 5px 10px rgba(196, 160, 40, 0.2);
}

.job-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.job-location {
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.job-icon {
    color: var(--gold);
}

.job-description {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.job-requirements {
    margin-bottom: 25px;
    padding-left: 20px;
}

.job-requirements li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
    line-height: 1.6;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.job-requirements li:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: -20px;
    top: 2px;
    transition: all 0.3s ease;
}

.job-requirements li:hover {
    transform: translateX(5px);
}

.job-requirements li:hover:before {
    color: var(--gold-light);
    transform: translateX(3px);
}

.job-benefits {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(166, 136, 0, 0.08);
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.job-card:hover .job-benefits {
    background-color: rgba(166, 136, 0, 0.12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-benefits p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.job-benefits p:hover {
    transform: translateX(5px);
}

.benefit-icon {
    color: var(--gold);
    font-weight: bold;
    transition: all 0.3s ease;
}

.job-benefits p:hover .benefit-icon {
    transform: scale(1.2);
}

.job-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 16px 32px;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
    margin-top: 70px;
}

.map-container {
    width: 100%;
    height: 450px;
    border: 2px solid var(--gold-dark);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-container:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) contrast(1.1);
    transition: all 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: all 0.5s ease;
}

.map-container:hover .map-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.map-address {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: var(--black);
    padding: 18px 22px;
    border-left: 3px solid var(--gold);
    max-width: 300px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-container:hover .map-address {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.map-address h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-address p {
    font-size: 0.95rem;
    line-height: 1.6;
}
/* ===== KONTAKT SECTION ÜBERARBEITET ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Gleiche Breite statt 1fr 2fr */
    gap: 40px; /* Reduzierter Abstand zwischen den Spalten */
    margin-bottom: 50px;
}

/* Kontakt-Karten Styling verfeinern */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%; /* Volle Höhe im Container */
}

.contact-card {
    display: flex;
    flex-direction: column;
    flex: 1; /* Jede Karte nimmt gleichen Platz ein */
    background-color: var(--black);
    padding: 25px 20px; /* Etwas weniger Padding links/rechts */
    border: 1px solid var(--gold-dark);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-30px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Kontaktformular Container anpassen */
.contact-form-container {
    opacity: 0;
    transform: translateX(30px);
    height: 100%; /* Volle Höhe im Container */
}

.contact-form {
    background-color: var(--black);
    padding: 25px; /* Padding reduzieren */
    border: 1px solid var(--gold-dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    height: 100%; /* Formular dehnt sich auf volle Höhe aus */
    display: flex;
    flex-direction: column;
}

/* Form-Gruppen anpassen für effizienteren Platz */
.form-group {
    margin-bottom: 15px; /* Weniger Abstand zwischen Form-Elementen */
}

.form-group input {
    padding: 12px 15px; /* Etwas kleinere Eingabefelder */
}

.form-group textarea {
    padding: 12px 15px;
    min-height: 100px; /* Feste Mindesthöhe für Textbereich */
    resize: vertical; /* Nur vertikales Skalieren erlauben */
    flex-grow: 1; /* Textbereich nimmt verfügbaren Platz ein */
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr; /* Bei kleineren Bildschirmen einspaltiges Layout */
        gap: 40px;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-card {
        flex: 1 1 200px;
    }
    
    .form-group textarea {
        min-height: 150px; /* Mehr Platz für Texteingabe auf mobilen Geräten */
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
    }
    .logo{
        display: none;
    }
    .contact-card {
        margin-bottom: 15px;
    }
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--dark-gray);
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(196, 160, 40, 0.2);
    transform: translateY(-3px);
}

.form-group:hover label {
    color: var(--gold-light);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(196, 160, 40, 0.2);
}

.form-status {
    margin-top: 25px;
    padding: 15px;
    text-align: center;
    display: none;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.form-status.success {
    display: block;
    background-color: rgba(0, 128, 0, 0.1);
    border-left: 3px solid #00a000;
    color: var(--gold-light);
    animation: fadeIn 0.5s ease;
}

.form-status.error {
    display: block;
    background-color: rgba(220, 20, 60, 0.1);
    border-left: 3px solid #dc143c;
    color: var(--gold-light);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--gold-dark);
    background: linear-gradient(to top, var(--black), var(--dark-gray) 100%);
    position: relative;
}

footer p {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-size: 1.1rem;
}

footer p::before,
footer p::after {
    content: '•';
    color: var(--gold);
    position: absolute;
    font-size: 1.5rem;
}

footer p::before {
    left: 0;
}

footer p::after {
    right: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 970px;
    }
    
    h1 {
        font-size: 3.8rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .logo {
        width: 20%;
        height: 25%;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-card {
        flex: 1 1 200px;
    }
    
    .logo {
        width: 18%;
        height: 22%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.7rem;
    }
    
    .logo {
        width: 15%;
        height: 20%;
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-img {
        height: 350px;
        margin-bottom: 20px;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
    
    .service-card, .job-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .logo {
        width: 25%;
        height: 12%;
        top: 1rem;
        left: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin: 5px;
    }
    
    .map-address {
        left: 15px;
        bottom: 15px;
        max-width: calc(100% - 30px);
        padding: 12px 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-icon, .contact-icon {
        font-size: 2.5rem;
        height: 60px;
    }
}

/* ===== CUSTOM ANIMATIONS ===== */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes border-glow {
    0% {
        box-shadow: 0 0 5px var(--gold-glow);
    }
    50% {
        box-shadow: 0 0 15px var(--gold-glow), 0 0 30px var(--gold-glow);
    }
    100% {
        box-shadow: 0 0 5px var(--gold-glow);
    }
}

/* Improved Icons with Better Visual Style */
.fa-truck-fast:before {
    content: '\f48b';
}

.fa-network-wired:before {
    content: '\f6ff';
}

.fa-route:before {
    content: '\f4d7';
}

.fa-envelope-open-text:before {
    content: '\f658';
}

.fa-headset:before {
    content: '\f590';
}

.fa-warehouse:before {
    content: '\f494';
}

.fa-circle-check:before {
    content: '\f058';
}

.fa-location-dot:before {
    content: '\f3c5';
}

/* ===== FOOTER MIT IMPRESSUM ===== */
footer {
    padding: 50px 0 30px;
    text-align: center;
    border-top: 1px solid var(--gold-dark);
    background: linear-gradient(to top, var(--black), var(--dark-gray) 100%);
    position: relative;
}

footer p {
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

footer p::before,
footer p::after {
    content: '•';
    color: var(--gold);
    position: absolute;
    font-size: 1.5rem;
}

footer p::before {
    left: 0;
}

footer p::after {
    right: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.footer-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-light);
}

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

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Sprachschalter Styling */
.language-switcher {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    gap: 15px;
}

.lang-link {
    display: flex;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.lang-link:hover, .lang-link.active {
    color: var(--gold-light);
    border-color: var(--gold-dark);
    background-color: rgba(10, 10, 10, 0.7);
    transform: translateY(-2px);
}

.flag-icon {
    width: 22px;
    height: 15px;
    margin-right: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .language-switcher {
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .language-switcher {
        top: 1rem;
        right: 1rem;
    }
    
    .lang-link {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
    
    .flag-icon {
        width: 18px;
        height: 12px;
    }
}