.contact-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-family: 'SavoryCurry', sans-serif;
    font-size: 4rem;
    color: #e91e63;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0px #fff, 5px 5px 0px rgba(0,0,0,0.1);
}

.contact-header p {
    font-size: 1.2rem;
    color: #444;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info-card, .contact-form-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 4px solid #f0f0f0;
    position: relative;
}

.contact-info-card {
    border-color: #bbdefb;
}

.contact-form-card {
    border-color: #f8bbd0;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    font-family: 'Grandstander Clean', sans-serif;
    margin: 0 0 5px 0;
    color: #1976d2;
}

.info-text p, .info-text a {
    margin: 0;
    color: #555;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-form-card h2 {
    font-family: 'Grandstander Clean', sans-serif;
    color: #e91e63;
    margin-top: 0;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #f8bbd0;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-family: 'Grandstander Clean', sans-serif;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    display: inline-block;
    width: 100%;
}

.btn-submit:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Décorations */
.deco-star {
    position: absolute;
    color: #ffd54f;
    font-size: 1.5rem;
    z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .contact-info-card, .contact-form-card {
        padding: 20px;
        border-radius: 20px;
    }
    .contact-header h1 {
        font-size: 2rem;
    }
}
