
:root {
    --tomato-primary: #ff6347;
    --tomato-dark: #e74c3c;
    --tomato-light: #ff8c7a;
    --tomato-bg: #fff5f3;
    --tomato-accent: #ff4500;
    --text-dark: #333;
    --text-light: #fff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #777;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

.contact {
    background: linear-gradient(rgba(248, 249, 250, 0.6), rgba(248, 249, 250, 0.9)), url('../img/contact.jpeg') no-repeat center center/cover;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--tomato-accent);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--tomato-primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--tomato-dark);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--tomato-dark);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--tomato-accent);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--tomato-accent);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn:hover {
    background-color: transparent;
    color: black;
}

.btn-primary {
    background-color: var(--tomato-accent);
    border-color: var(--tomato-accent);
    color: white;
}

.btn-primary:hover {
    background-color: transparent;
    color: black;
}