/* Contact Page CSS */

/* Page Header */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-banner,
.privacy-banner,
.terms-banner {
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact-banner-overlay,
.privacy-banner-overlay,
.terms-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.85) 0%, rgba(234, 88, 12, 0.85) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.9);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255,255,255,0.7);
    margin: 0 0.5rem;
}

/* Section Spacing */
.section {
    padding: 80px 0;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.contact-info-card h5 {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-orange-dark);
}

.contact-info-card .btn {
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
}

.contact-info-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

/* Contact Form */
.card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card-header {
    background: white;
    border-bottom: 2px solid #f0f0f0;
}

.card-header h3,
.card-header h4,
.card-header h6 {
    color: var(--dark-gray);
    font-weight: 700;
}

.card-header i {
    color: var(--primary-orange);
}

.card-body {
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.input-group-text {
    background: #6b7280;
    color: white;
    border: none;
    border-radius: 12px 0 0 12px;
    padding: 0.625rem 0.5rem;
    min-width: 40px;
    justify-content: center;
    font-size: 0.9rem;
}

.input-group-lg .input-group-text {
    padding: 0.625rem 0.5rem;
    min-width: 40px;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 0 12px 12px 0;
    padding: 0.625rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f3f4f6;
}

.input-group-lg .form-control,
.input-group-lg .form-select {
    padding: 0.625rem 1rem;
    font-size: 0.95rem;
    background: #f3f4f6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    background: #f9fafb;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    border-radius: 0 12px 12px 0;
    resize: vertical;
    min-height: 120px;
    background: #f3f4f6;
    padding: 0.625rem 1rem;
    font-size: 0.95rem;
}

textarea.form-control:focus {
    background: #f9fafb;
}

.input-group .input-group-text.align-items-start {
    padding: 0.625rem 0.5rem;
    min-width: 40px;
    font-size: 0.9rem;
}

.form-check-input {
    border: 2px solid #e5e7eb;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
}

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

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-check-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    background: var(--gradient-secondary);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary i {
    font-size: 1.2rem;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert i {
    font-size: 1.1rem;
}

/* FAQ Accordion */
.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    color: var(--dark-gray);
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: #f9fafb;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Map */
.contact-map {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-media-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-media-link:hover {
    background: white;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.2);
}

.social-media-link i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.social-media-link span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Quick Contact */
.quick-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.quick-contact-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.quick-contact-item strong {
    color: var(--dark-gray);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.quick-contact-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    .input-group-lg .input-group-text {
        padding: 0.625rem 0.5rem;
        min-width: 40px;
        font-size: 0.85rem;
    }
    
    .input-group-lg .form-control,
    .input-group-lg .form-select {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
        background: #f3f4f6;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-body {
        padding: 1.5rem 1.25rem !important;
    }
    
    .social-media-link {
        padding: 0.875rem 1rem;
    }
    
    .quick-contact-item {
        padding: 0.875rem;
    }
}

