.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0-30V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 0;
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.contact-content-section {
    background-color: var(--background-color);
}

.contact-form-card,
.contact-info-card {
    border-radius: 12px;
    overflow: hidden;
}

.contact-form-card .card-header,
.contact-info-card .card-header {
    border: none;
    padding: 1.25rem 1.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.contact-form-card .form-control.is-invalid {
    border-color: #DC3545;
}

.contact-form-card .invalid-feedback {
    display: block;
    font-size: 0.875rem;
    color: #DC3545;
    margin-top: 0.25rem;
}

.contact-form-card #submitBtn {
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form-card #submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.contact-form-card #submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#formMessage {
    min-height: 50px;
}

#formMessage .alert {
    border-radius: 8px;
    border: none;
}

.contact-info-item {
    color: var(--text-color);
}

.contact-icon {
    min-width: 40px;
    text-align: center;
}

.contact-info-item h5 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-social .social-linkss a {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-social .social-linkss a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-instagram {
    border-color: #833AB4;
    color: #833AB4;
    background-color: transparent;
}

.btn-instagram:hover {
    background-color: #833AB4;
    border-color: #833AB4;
    color: white;
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 2rem 0;
    }

    .contact-hero-section h1 {
        font-size: 2rem;
    }

    .contact-form-card .card-body,
    .contact-info-card .card-body {
        padding: 1.5rem;
    }
}

