*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    background: #013259;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 40px;
    width: auto;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.header-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-width: 80px;
}

.header-btn a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-btn:hover {
    background: rgba(255,255,255,0.3);
}

.header-btn i {
    font-size: 12px;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}
.language-selector {
    position: relative;
    margin-left: 10px;
}

.language-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 70px;
    justify-content: center;
}

.language-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-dropdown i {
    font-size: 12px;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 14px;
}

.language-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.language-option.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-weight: 500;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

.flag-tr {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAyNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjE4IiBmaWxsPSIjRTMwQTEzIi8+CjxjaXJjbGUgY3g9IjkiIGN5PSI5IiByPSIzLjUiIGZpbGw9IiNGRkZGRkYiLz4KPGNpcmNsZSBjeD0iMTAuNSIgY3k9IjkiIHI9IjIuNSIgZmlsbD0iI0UzMEExMyIvPgo8cG9seWdvbiBwb2ludHM9IjE0LDcgMTUsNi41IDE2LDcgMTUuNSw4IDE2LDkgMTUsOC41IDE0LDkgMTQuNSw4IiBmaWxsPSIjRkZGRkZGIi8+Cjwvc3ZnPg==');
}

.flag-de {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAyNCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjYiIGZpbGw9IiNGRjAwMDAiLz4KPHJlY3QgeT0iNiIgd2lkdGg9IjI0IiBoZWlnaHQ9IjYiIGZpbGw9IiNGRkRDMDAiLz4KPHJlY3QgeT0iMTIiIHdpZHRoPSIyNCIgaGVpZ2h0PSI2IiBmaWxsPSIjMDAwMDAwIi8+Cjwvc3ZnPg==');
}

    
/* Main Section */
.main {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    transition: background-image 1s ease-in-out;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main-text {
    color: white;
}

.main h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.main-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: #ff4757;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ff3742;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.main-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-collage {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.main-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #00bcd4, #4fc3f7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}



.person-bubble {
    position: absolute;
    top: -15px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

.offer-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

    /*contact*/
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .contact-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .contact-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .contact-popup {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        background: white;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        max-width: 600px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        transition: all 0.3s ease;
    }

    .contact-overlay.show .contact-popup {
        transform: translate(-50%, -50%) scale(1);
    }

    .contact-popup-header {
        background: #013259;
        color: white;
        padding: 2rem;
        border-radius: 20px 20px 0 0;
        position: relative;
    }

    .contact-popup-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .contact-popup-header p {
        opacity: 0.9;
        font-size: 1.1rem;
    }

    .close-popup {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-popup:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .contact-popup-content {
        padding: 2rem;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        border-left: 4px solid #667eea;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    }

    .contact-item-icon {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-item-content h4 {
        color: #333;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .contact-item-content p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .contact-item-content a {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
    }

    .contact-item-content a:hover {
        text-decoration: underline;
    }

    .contact-form {
        background: #f8f9fa;
        padding: 2rem;
        border-radius: 15px;
        margin-top: 1rem;
    }

    .contact-form h3 {
        color: #333;
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 1.5rem;
    }

        

    /* Footer */
    .footer {
        background: #013259;
        color: white;
        padding: 40px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        margin-bottom: 20px;
        font-size: 1.3rem;
        color: #fff;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 10px;
    }

    .footer-section a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-section a:hover {
        color: white;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.2);
        color: rgba(255,255,255,0.8);
    }

     

    /* Mobile Responsive Design */
    @media (max-width: 1024px) {
        .main h1 {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .header-container {
            padding: 0 15px;
        }

        .mobile-menu-btn {
            display: block;
        }

        .header-buttons {
            display: none;
            width: 100%;
            flex-direction: column;
            gap: 10px;
            margin-top: 15px;
        }

        .header-buttons.active {
            display: flex;
        }

        .header-btn {
            width: 100%;
            justify-content: center;
            padding: 12px;
            font-size: 16px;
        }

        .language-selector {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
            }

            .language-dropdown {
                padding: 8px 12px;
                font-size: 12px;
                width: 100%;
                justify-content: center;
            }

            .language-options {
                right: 0;
                left: 0;
                min-width: auto;
            }

        .main {
            min-height: 60vh;
            padding: 40px 0;
        }

        .main-content {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .main h1 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .main-description {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .main-image {
            height: 200px;
            font-size: 2rem;
        }

        .person-bubble {
            width: 60px;
            height: 60px;
            font-size: 1.2rem;
            top: -10px;
            right: -15px;
        }

        .offer-badge {
            padding: 8px 12px;
            font-size: 10px;
            bottom: -10px;
            right: 10px;
        }

        .services {
            padding: 40px 0;
        }

        .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .service-card {
            padding: 30px 20px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .container {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .logo img {
            height: 35px;
        }

        .main h1 {
            font-size: 1.8rem;
        }

        .main-description {
            font-size: 0.9rem;
        }

        .cta-button {
            padding: 12px 25px;
            font-size: 1rem;
        }

        .main-image {
            height: 180px;
            font-size: 1.8rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .service-card {
            padding: 25px 15px;
        }

        .service-title {
            font-size: 1.1rem;
        }
    }

    /* Landscape orientation for mobile */
    @media (max-width: 768px) and (orientation: landscape) {
        .main {
            min-height: 80vh;
        }

        .main-content {
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .main h1 {
            font-size: 2rem;
        }
    }