:root {
    --primary-color: #6c63ff;
    --primary-light: #8b85ff;
    --primary-dark: #564fd1;
    --secondary-color: #00bfa6;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, #16213e 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.7;
    background-color: #fefefe;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-hero {
    background: var(--gradient-dark);
    padding: 8rem 0 6rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.1;
    }
}

.contact-card {
    border: none;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.btn-contact {
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    transition: all 0.4s ease;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.4);
    color: white;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 300px;
}

.contact-method {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-method:hover {
    background-color: rgba(108, 99, 255, 0.05);
    transform: translateY(-5px);
}

.bg-contact-light {
    background-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}