body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
    font-size: 1.5rem;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
}

.contact-section {
    padding: 60px 0;
}

.contact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-weight: 500;
}

.map-embed-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-embed {
    border-radius: 10px;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--primary-color);
    max-width: 250px;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.map-info p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
}

.map-info small {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0 0 10px 10px;
        margin-top: -5px;
    }

    .map-info {
        justify-content: center;
        text-align: center;
    }
}

.form-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.form-container .mb-4 {
    font-size: 1.4rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(106, 17, 203, 0.25);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icons {
    margin-top: 30px;
}

h3.mb-4{
    font-size: 1.4rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    margin: 0 10px;
    transition: all 0.3s;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.facebook {
    background: #3b5998;
}

.youtube {
    background: #ff0000;
}

.tiktok {
    background: #1d2127;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

