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

body {
    font-family: 'Noto Sans', sans-serif;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #d2527f 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

/* Form Section */
.form-section {
    flex: 1;
    background: rgba(45, 55, 72, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 1.5rem;
    color: #bb86fc;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(75, 85, 99, 0.8);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-input:focus {
    outline: none;
    border-color: #bb86fc;
    background: rgba(75, 85, 99, 1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ff5722);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Contacts Section */
.contacts-section {
    flex: 1;
    background: rgba(45, 55, 72, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contacts-title {
    font-size: 1.5rem;
    color: #4dd0e1;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(75, 85, 99, 0.5);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.address-icon {
    background: linear-gradient(135deg, #bb86fc, #9c27b0);
}

.email-icon {
    background: linear-gradient(135deg, #ff6b6b, #f44336);
}

.phone-icon {
    background: linear-gradient(135deg, #4dd0e1, #00bcd4);
}

.contact-info h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: left;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
}


.screenshots img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.screenshot-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .form-section,
    .contacts-section {
        padding: 2rem;
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .form-section,
    .contacts-section {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}