* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.90)),
    url('background laptop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-left {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-left-title h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-left-title hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #ffffff, transparent);
    margin-bottom: 8px;
}

.contact-inputs {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-inputs::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-inputs:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

textarea.contact-inputs {
    resize: vertical;
    min-height: 130px;
}

button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    background: #ffffff;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

button[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

button[type="submit"] img {
    width: 18px;
    height: 18px;
}

.contact-right {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    min-height: 400px;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-right {
        min-height: 150px;
    }

    .contact-left {
        padding: 28px 20px;
    }
}