/* Website Page Specific Styles */

/* Hero Section */
.website-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(240, 58, 112, 0.1) 50%, rgba(0, 166, 251, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 6rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

/* Individual positioning for each overlay */
.overlay-1 {
    top: 20px;
    right: -80px;
    animation-delay: 0s;
}

.overlay-2 {
    top: 60%;
    left: -150px;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.overlay-3 {
    bottom: 10px;
    left: 40%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.overlay-4 {
    top: 120px;
    left: -80px;
    animation-delay: 4.5s;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(0px) translateX(-5px);
    }
    75% {
        transform: translateY(10px) translateX(5px);
    }
}

/* Specific transforms for positioned overlays */
.overlay-2 {
    animation-name: floatLeft;
}

.overlay-3 {
    animation-name: floatBottom;
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateY(-50%) translateX(0px);
    }
    25% {
        transform: translateY(-50%) translateX(-10px);
    }
    50% {
        transform: translateY(-50%) translateX(5px);
    }
    75% {
        transform: translateY(-50%) translateX(-5px);
    }
}

@keyframes floatBottom {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    25% {
        transform: translateX(-50%) translateY(-8px);
    }
    50% {
        transform: translateX(-50%) translateY(5px);
    }
    75% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.code-snippet {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    min-width: 250px;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
    display: flex;
    gap: 0.3rem;
}

.code-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-pink);
}

.code-dots span:nth-child(2) {
    background: #ffd700;
}

.code-dots span:nth-child(3) {
    background: var(--primary-blue);
}

.code-content {
    color: var(--light-text);
    line-height: 1.4;
}

.code-tag {
    color: var(--primary-blue);
}

.code-attr {
    color: var(--primary-pink);
}

.code-value {
    color: #90ee90;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.service-card {
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 30px rgba(240, 58, 112, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
    border-radius: 20px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Technologies Section */
.technologies-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 8rem 0 0 0;
}

/* Mobile responsive für Technologies */
@media (max-width: 768px) {
    .technologies-section {
        padding: 4rem 0 0 0;
    }
    
    .technologies-section .section-header h2 {
        font-size: 2.2rem !important;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .technologies-section .section-header h3 {
        font-size: 1.2rem !important;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .technologies-section .section-header .lead {
        font-size: 1rem !important;
        line-height: 1.5;
    }
}

.tech-categories {
    margin-top: 3rem;
}

.tech-category {
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 166, 251, 0.2);
}

.tech-category h4 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-pink);
}

.tech-item i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 8rem 0 6rem 0;
    background: #000000;
}

/* Mobile responsive für Process Section */
@media (max-width: 768px) {
    .process-section {
        padding: 10rem 0 4rem 0;
    }
    
    .process-section .section-header h2 {
        font-size: 2.5rem !important;
        line-height: 1.1;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }
    
    .process-section .section-header h3 {
        font-size: 1.3rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .process-section .section-header .lead {
        font-size: 1rem !important;
        line-height: 1.4;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .process-section .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.0;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
        word-break: break-word;
        hyphens: auto;
    }
    
    .process-section .section-header h3 {
        font-size: 1rem !important;
        line-height: 1.1;
        margin-bottom: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .process-section .section-header .lead {
        font-size: 0.85rem !important;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
}

@media (max-width: 375px) {
    .process-section .section-header h2 {
        font-size: 1.5rem !important;
        line-height: 0.95;
        margin-bottom: 0.6rem;
        padding: 0 0.3rem;
        word-break: break-word;
        hyphens: auto;
    }
    
    .process-section .section-header h3 {
        font-size: 0.9rem !important;
        line-height: 1.0;
        margin-bottom: 0.5rem;
        padding: 0 0.3rem;
    }
    
    .process-section .section-header .lead {
        font-size: 0.75rem !important;
        line-height: 1.2;
        padding: 0 0.3rem;
    }
}

.process-timeline {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.step-content h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #000000;
}

/* Section Divider */
.section-divider {
    padding: 1.5rem 0;
    background: #000000;
}

.section-divider::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #e91e63 50%, 
        transparent 100%);
    opacity: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

/* Mobile responsive für Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
        display: block !important;
        visibility: visible !important;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        display: grid !important;
    }
    
    .contact-form {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .contact-image {
        display: none;
    }
    
    .contact-form .floating-label {
        font-size: 0.7rem !important;
        position: absolute;
        top: 1rem;
        left: 1rem;
        color: rgba(255, 255, 255, 0.7);
        pointer-events: none;
        transition: all 0.3s ease;
        background: transparent;
        z-index: 2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 2rem);
        line-height: 1.2;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .contact-form .form-control {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .contact-form .form-control:focus + .floating-label,
    .contact-form .form-control:not(:placeholder-shown) + .floating-label {
        top: -0.5rem;
        left: 0.75rem;
        font-size: 0.6rem;
        color: var(--primary-pink);
        background: rgba(0, 0, 0, 0.8);
        padding: 0 0.25rem;
        border-radius: 4px;
        max-width: calc(100% - 1.5rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form .floating-label {
        font-size: 0.65rem !important;
        max-width: calc(100% - 1.5rem);
    }
    
    .contact-form .form-control {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .contact-form .form-control:focus + .floating-label,
    .contact-form .form-control:not(:placeholder-shown) + .floating-label {
        font-size: 0.55rem;
        max-width: calc(100% - 1rem);
    }
    
    .form-check-label {
        font-size: 0.8rem !important;
        line-height: 1.3;
    }
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-pink);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-content h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Website Impact Section */
.website-impact {
    background: #000000;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header .lead {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 0;
}

.impact-content p strong {
    color: white;
    font-weight: 600;
}

.impact-image-container {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Mobile Layout für Impact Section */
@media (max-width: 991px) {
    .website-impact .col-lg-6.order-2.order-lg-1 {
        order: 2 !important;
        margin-top: 2rem;
    }
    
    .website-impact .col-lg-6.order-1.order-lg-2 {
        order: 1 !important;
        margin-bottom: 2rem;
    }
    
    .impact-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .impact-content h3 {
        text-align: center;
    }
    
    .impact-content {
        text-align: center;
    }
}

.impact-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* Responsive Section */
.responsive-section {
    background: #000000;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.responsive-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.responsive-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.responsive-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.responsive-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.responsive-content p:last-child {
    margin-bottom: 0;
}

.responsive-image-container {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.responsive-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* Mobile Layout */
@media (max-width: 991px) {
    .responsive-section .col-lg-6.order-2.order-lg-1 {
        order: 1 !important;
        margin-bottom: 2rem;
    }
    
    .responsive-section .col-lg-6.order-1.order-lg-2 {
        order: 2 !important;
    }
    
    .responsive-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .responsive-content h3 {
        text-align: center;
    }
    
    .responsive-content {
        text-align: center;
    }
}

/* Functions Section */
.functions-section {
    background: #000000;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.functions-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.functions-content h3 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.functions-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.functions-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.functions-content p:last-child {
    margin-bottom: 0;
}

.functions-image-container {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.functions-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

/* Mobile Layout */
@media (max-width: 991px) {
    .functions-section .col-lg-6.order-2.order-lg-1 {
        order: 2 !important;
        margin-top: 2rem;
    }
    
    .functions-section .col-lg-6.order-1.order-lg-2 {
        order: 1 !important;
        margin-bottom: 2rem;
    }
    
    .functions-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .functions-content h3 {
        text-align: center;
    }
    
    .functions-content {
        text-align: center;
    }
}

/* Browser Mockup Styles */
.browser-mockup {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a2e 70%, #000000 100%);
    padding: 8rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.browser-frame {
    width: 90%;
    max-width: 1200px;
    height: 70vh;
    background: #2d2d2d;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

/* Responsive für kleinere Desktop-Displays */
@media (max-width: 1200px) {
    .browser-mockup {
        padding: 10rem 2rem 2rem 2rem;
    }
    
    .browser-frame {
        height: 65vh;
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .browser-mockup {
        padding: 12rem 1.5rem 2rem 1.5rem;
    }
    
    .browser-frame {
        height: 60vh;
        width: 95%;
        max-width: 900px;
    }
}

@media (max-width: 900px) {
    .browser-mockup {
        padding: 14rem 1rem 2rem 1rem;
    }
    
    .browser-frame {
        height: 55vh;
        width: 98%;
    }
}

.browser-frame:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

.browser-header {
    background: #3c3c3c;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #555;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control.close {
    background: #ff5f57;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #28ca42;
}

.control:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.browser-url-bar {
    flex: 1;
    margin-left: 20px;
}

.url-input {
    background: #2a2a2a;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
    max-width: 400px;
}

.url-input i {
    color: #4CAF50;
    font-size: 0.8rem;
}

.browser-content {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    height: calc(80vh - 60px);
    position: relative;
    overflow: hidden;
}

.website-hero {
    padding: 4rem 2rem;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.website-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.website-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.website-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 400;
}

.website-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.website-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(240, 58, 112, 0.2);
    border-color: rgba(240, 58, 112, 0.4);
    transform: translateY(-2px);
}

.feature-badge i {
    color: var(--primary-color);
}

.website-cta {
    margin-top: 2.5rem;
}

.website-cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(240, 58, 112, 0.3);
}

.website-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 58, 112, 0.4);
}

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

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: floatTech 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon:nth-child(2) {
    color: #1572B6;
}

.floating-icon:nth-child(3) {
    color: #F7DF1E;
}

.floating-icon:nth-child(4) {
    color: #61DAFB;
}

.floating-icon:nth-child(5) {
    color: #339933;
}

@keyframes floatTech {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .browser-mockup {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-features {
        gap: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    /* Mobile image adjustments */
    .hero-image-container {
        margin-top: 2rem;
        margin-left: 0;
    }
    
    .hero-image {
        border-radius: 15px;
    }
    
    /* Impact section mobile */
    .impact-content h2 {
        font-size: 2.5rem;
    }
    
    .impact-content h3 {
        font-size: 1.4rem;
    }
    
    .impact-content .lead {
        font-size: 1.1rem;
    }
    
    .impact-content p {
        font-size: 1rem;
    }
    
    .impact-image-container {
        margin-top: 2rem;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-categories .row {
        gap: 1rem;
    }
    
    .service-card,
    .tech-category {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .code-snippet {
        font-size: 0.7rem;
        min-width: 200px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


/* Contact Container Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.contact-form {
    max-width: 500px;
    width: 100%;
}


/* Form Check Styling - exakt wie auf index.html */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-check:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(240, 58, 112, 0.3);
}

.form-check-input {
    margin-top: 0.125rem;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
}

.form-check-input:checked {
    background: linear-gradient(45deg, #e91e63, #00a6fb);
    border-color: #e91e63;
    box-shadow: 0 0 10px rgba(240, 58, 112, 0.3);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.form-check-label a {
    color: #e91e63;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.contact-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}

.website-impact-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-image {
        order: -1;
    }
    
    .contact-img {
        max-width: 350px;
    }
}
