@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

.contact_main{
   width: 100%;
   background: linear-gradient(#ffffff 50%, #f9f8f6 50%);
}
.contact-section {
    
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    color: #474747;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-header p {
    color: #474747;
    font-size: 1.2rem;
    max-width: 500px;
    font-family: sans-serif;
    margin: 0 auto 30px;
    line-height: 1.3;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(3, 3, 3, 0.61);
    margin-top: 40px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.contact_name {
    flex: 1;
    text-align: left;
}

.contact_name p {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: sans-serif;
    margin-left: 10px;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

textarea {
    min-height: 120px;
    border-radius: 15px;
    resize: none;
}

input:focus, textarea:focus {
    border-color: #b3002d;
}

button {
    background: #b3002d;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: white;
    color: #b3002d;
    border: #474747 1px solid;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 90px;
    text-align: left;
}

.contact-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.phone {
    color: #b3002d;
    margin: 0;
    font-weight: bold;
     font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .contact-info {
        text-align: center;
    }
}
