:root {
    --primary-gradient: linear-gradient(90deg, #fd3f6b 0%, #a445b2 100%);
    --text-dark: #333;
    --text-light: #666;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

[data-bs-theme="dark"] .contact-hero::after {
    background: var(--bs-body-bg);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .contact-card {
    background: #1e293b;
    border-color: #334155;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 63, 107, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(253, 63, 107, 0.1);
    color: #fd3f6b;
    font-size: 2.5rem;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #fd3f6b;
    color: white;
    transform: rotateY(180deg);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .contact-form-card {
    background: #1e293b;
    border-color: #334155;
}

.form-control, .form-select {
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

[data-bs-theme="dark"] .form-control, [data-bs-theme="dark"] .form-select {
    background-color: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: #fd3f6b;
    background-color: white;
}

[data-bs-theme="dark"] .form-control:focus, [data-bs-theme="dark"] .form-select:focus {
    background-color: #1e293b;
}

.btn-submit {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(253, 63, 107, 0.3);
    color: white;
}

.working-hours-card {
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.working-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

[data-bs-theme="dark"] .faq-section {
    background-color: #0f172a;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

[data-bs-theme="dark"] .accordion-item {
    background-color: #1e293b;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: bold;
    background-color: white;
    color: var(--text-dark);
}

[data-bs-theme="dark"] .accordion-button {
    background-color: #1e293b;
    color: #e2e8f0;
}

.accordion-button:not(.collapsed) {
    background-color: #fff5f7;
    color: #fd3f6b;
    box-shadow: none;
}

[data-bs-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: rgba(253, 63, 107, 0.1);
    color: #fd3f6b;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.125);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
