/* Hero Section */
.contact-hero {
    text-align: center;
    padding: 50px 20px 20px;
    background-color: var(--pure-white);
}

.contact-hero h1 {
    color: var(--primary-red);
    font-size: 42px;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.contact-hero p {
    color: var(--text-grey);
    font-size: 16px;
}

@keyframes beat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Contact Section */
.contact-section {
    padding: 40px 0 80px;
    background-color: var(--pure-white);
    display: flex;
    justify-content: center;
}

.contact-card {
    background: white;
    border-radius: 30px; 
    box-shadow: 0 15px 40px rgba(255, 62, 108, 0.1);
    display: flex;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--soft-red);
}

/* Left Side - Info & Map */
.contact-info {
    flex: 1;
    padding: 40px;
    background: var(--soft-red); 
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 800;
}

.contact-info p {
    color: var(--text-grey);
    margin-bottom: 25px;
    font-size: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-red);
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(255, 62, 108, 0.1);
}

.map-container {
    margin-top: auto; 
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Right Side - Form */
.contact-form-wrapper {
    flex: 1.2; 
    padding: 40px;
    background: white;
}

.contact-form-wrapper h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 800;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-grey);
    margin-bottom: 8px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 15px;
    transition: all 0.3s;
    background: #fdfdfd;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-red); 
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 62, 108, 0.1);
}

.send-btn {
    width: 100%;
    background: var(--accent-green); 
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
}

.send-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.send-btn i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .contact-info, 
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .map-container {
        height: 200px;
        margin-top: 30px;
    }
}