:root {
    --primary: #ff416c;
    --primary-gradient: linear-gradient(to right, #ff416c, #ff4b2b);
    --secondary: #5e2eff;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --background: #fafafa;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: white;
    box-shadow: var(--shadow);
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: var(--primary);
}

/* Contact Section */
main {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 1000px;
}

.contact-info {
    flex: 1;
    padding: 60px 40px;
    background: var(--primary-gradient);
    color: var(--text-light);
    position: relative;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-decoration {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 70%;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: rotate(-5deg);
}

.contact-decoration::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-form {
    flex: 1.3;
    padding: 60px 40px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 65, 108, 0.3);
}

#formStatus {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.success {
    background-color: #dff2bf;
    color: #4F8A10;
}

.error {
    background-color: #ffbaba;
    color: #D8000C;
}

/* Footer */
footer {
    background-color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 500px) {
    .contact-info h2 {
        font-size: 28px;
    }

    .submit-btn {
        width: 100%;
    }
}