.contact-hero {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(249, 168, 38, 0.1) 100%);
    padding: 180px 0 100px;
    text-align: center;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 100px 0;
    background-color: white;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: var(--transition);
}

.info-link:hover {
    color: var(--secondary);
    gap: 12px;
}

.business-hours {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 20px;
}

.business-hours h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: var(--dark);
    font-weight: 500;
}

.hours-list .time {
    color: var(--secondary);
    font-weight: 600;
}

.contact-form-container {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-label .required {
    color: #e53935;
}

.form-control {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    font-size: 0.8rem;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.file-upload {
    position: relative;
}

.file-upload-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.file-upload-input::file-selector-button {
    padding: 8px 16px;
    margin-right: 15px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    background: white;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-input::file-selector-button:hover {
    background: var(--primary);
    color: white;
}

.file-size-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 5px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.form-check-input:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.form-check-label {
    color: var(--gray);
    font-size: 0.9rem;
    cursor: pointer;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.submit-btn {
    padding: 14px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray);
}

.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-media-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.social-media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.social-media-card:hover .social-icon {
    transform: scale(1.1);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #000000 0%, #657786 100%);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0A5BC4 100%);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #004471 100%);
}

.social-icon.github {
    background: linear-gradient(135deg, #333333 0%, #24292e 100%);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.social-media-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.social-media-card p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 48px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.social-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.social-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    padding: 50px;
    margin-top: 60px;
    text-align: center;
    color: white;
}

.social-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.social-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.social-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.social-cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.social-cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 600;
}

.social-cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-media-card {
        padding: 25px;
    }
    
    .social-cta {
        padding: 30px;
        margin-top: 40px;
    }
    
    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.channel-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.channel-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.channel-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.channel-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.map-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.1) 0%, rgba(249, 168, 38, 0.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.map-placeholder h3 {
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--gray);
    max-width: 400px;
    text-align: center;
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(26, 35, 126, 0.03);
}

.faq-question h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    color: var(--secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.contact-channels {
    padding: 100px 0;
    background: var(--light-gray);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.channel-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(249, 168, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.channel-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.channel-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.channel-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.success-message {
    display: none;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    color: #2e7d32;
}

.success-message i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4caf50;
}

.success-message h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.form-control.error {
    border-color: #e53935;
    background: rgba(229, 57, 53, 0.05);
}

.form-control.success {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.05);
}

.error-message {
    color: #e53935;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.chat-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.chat-header {
    text-align: center;
    margin-bottom: 40px;
}

.chat-header h1 {
    color: var(--primary);
    margin-bottom: 10px;
}

.chat-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 50px;
}

.chat-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.chat-widget-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-agent-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-agent-info h3 {
    margin: 0;
    font-size: 1.2rem;
}

.chat-agent-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.message-incoming {
    background: #f0f2f5;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message-outgoing {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 5px;
}

.chat-input-area {
    border-top: 1px solid #eee;
    padding: 20px;
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.chat-send-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.chat-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

.chat-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.chat-info-list {
    list-style: none;
    margin-bottom: 30px;
}

.chat-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-info-list i {
    color: var(--primary);
    width: 20px;
}

.alternative-options {
    background: #f9f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.alternative-options h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.alt-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.alt-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.alt-option i {
    color: var(--primary);
    font-size: 1.2rem;
}

.chat-disclaimer {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.schedule-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.schedule-header {
    text-align: center;
    margin-bottom: 40px;
}

.schedule-header h1 {
    color: var(--primary);
    margin-bottom: 10px;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-bottom: 50px;
}

.schedule-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 30px;
}

.step-header h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary);
    color: white;
}

.step.completed .step-number {
    background: var(--secondary);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.calendar-container {
    margin: 30px 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: #f0f2f5;
}

.calendar-day.selected {
    background: var(--primary);
    color: white;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day-header {
    font-weight: 600;
    color: var(--primary);
    padding: 10px 0;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.time-slot {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: var(--primary);
}

.time-slot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.expert-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expert-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.expert-card.selected {
    border-color: var(--primary);
    background: #f9f9ff;
}

.expert-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.expert-info h4 {
    margin: 0 0 5px;
    color: var(--primary);
}

.expert-specialty {
    font-size: 0.9rem;
    color: var(--gray);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background: #f0f2f5;
    color: var(--gray);
}

.btn-next, .btn-submit {
    background: var(--primary);
    color: white;
}

.btn-prev:hover {
    background: #e0e2e5;
}

.btn-next:hover, .btn-submit:hover {
    background: var(--primary-dark);
}

.schedule-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    height: fit-content;
}

.appointment-summary {
    margin-bottom: 30px;
}

.appointment-summary h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-label {
    color: var(--gray);
}

.summary-value {
    font-weight: 600;
    color: var(--primary);
}

.schedule-info {
    background: #f9f9ff;
    padding: 20px;
    border-radius: 8px;
}

.schedule-info h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list i {
    color: var(--primary);
    width: 20px;
}

.confirmation-message {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.form-error-message {
    background: #fee;
    border: 1px solid #fcc;
    color: #c00;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.form-error-message i {
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.form-optional {
    opacity: 0.8;
}

.form-optional .form-label {
    font-weight: 400;
}

.form-optional .form-control,
.form-optional .form-select {
    background: #fafafa;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .chat-content,
    .schedule-content {
        grid-template-columns: 1fr;
    }
    
    .chat-widget {
        height: 500px;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 150px 0 80px;
    }
    
    .contact-hero h1 {
        font-size: 2.3rem;
    }
    
    .form-submit {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-container {
        height: 400px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        gap: 5px;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .info-card,
    .contact-form-container {
        padding: 25px;
    }
    
    .channel-card {
        padding: 30px;
    }
    
    .chat-widget-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .chat-agent-avatar {
        width: 40px;
        height: 40px;
    }
    
    .expert-card {
        flex-direction: column;
        text-align: center;
    }
    
    .expert-avatar {
        width: 50px;
        height: 50px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.calendar-day:not(.disabled):not(.calendar-day-header) {
    animation: fadeIn 0.3s ease;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-dark);
    gap: 8px;
}