/* Contact Page Styles for VS Advertising */

/* Page Header */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    margin-top: 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 52, 54, 0.2);
    z-index: -1;
}

.header-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.header-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-orange);
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
    border-color: var(--primary-orange);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-orange);
}

.contact-action .btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 25px;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: auto;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.2);
}

.form-control:valid {
    border-color: #28a745;
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 69%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
}

.form-group:focus-within .form-icon {
    color: var(--primary-purple);
}

textarea.form-control {
    padding: 15px 20px;
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    padding-left: 50px;
    background: white;
}

.form-check {
    margin: 1.5rem 0;
}

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.form-check-label {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Button */
#submitBtn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.3);
}

/* Form Response */
.form-response {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-orange);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

/* Quick Contact List */
.quick-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.quick-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.quick-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quick-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.3rem;
}

.quick-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.quick-content a {
    color: var(--text-light);
    text-decoration: none;
}

.quick-content a:hover {
    color: var(--primary-orange);
}

/* Why Choose Us */
.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(108, 92, 231, 0.1);
    transform: translateX(5px);
}

.why-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.why-item span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Emergency Card */
.emergency-card {
    background: var(--gradient-primary);
    color: white;
    border-left: 4px solid var(--primary-orange);
}

.emergency-card h4 {
    color: white;
}

.emergency-card p {
    color: rgba(255, 255, 255, 0.9);
}

.emergency-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-emergency {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    font-weight: 600;
}

.btn-emergency:hover {
    background: var(--dark-orange);
    border-color: var(--dark-orange);
    color: white;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.office-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.office-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.15);
}

.office-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.office-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.office-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.office-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 250px;
}

.map-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.map-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-link:hover {
    color: var(--dark-orange);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-accordion {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--primary-purple);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'%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='%23FF6B35'%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");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-sidebar {
        position: static;
        top: auto;
        margin-top: 3rem;
    }
    
    .office-actions {
        justify-content: center;
    }
    
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .office-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .office-actions {
        flex-direction: column;
    }
    
    .office-actions .btn {
        width: 100%;
    }
    
    .emergency-buttons .btn {
        width: 100%;
    }
    
    .map-overlay {
        position: static;
        margin: 1rem;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .contact-form-section,
    .contact-info-section,
    .location-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .form-control {
        padding: 12px 15px 12px 45px;
    }
    
    .form-icon {
        left: 15px;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 0 1rem 1rem;
    }
}
