﻿/* ============================================
   CONTACT US PAGE - LIGHT BLUE THEME
   ============================================ */

/* Color Variables */
:root {
    --primary-color: #42a5f5;
    --primary-dark: #1976d2;
    --primary-light: #64b5f6;
    --success-color: #66bb6a;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #9e9e9e;
    --bg-light: #f5f9fc;
    --bg-white: #ffffff;
    --bg-blue-light: #e3f2fd;
    --bg-blue-lighter: #f0f7ff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    padding: 70px 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

    .contact-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

. contact-hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-icon i {
    font-size: 2.8rem;
    color: var(--bg-white);
}

.contact-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Contact Content Section */
.contact-content-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* Contact Form Card */
.contact-form-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

    .contact-form-card:hover {
        box-shadow: var(--shadow-lg);
    }

.form-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-blue-light);
}

    .form-header i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        display: block;
    }

    .form-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .form-header p {
        font-size: 1rem;
        color: var(--text-gray);
        margin: 0;
    }

/* Form Elements */
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

    .form-label i {
        color: var(--primary-color);
    }

.required {
    color: #e53935;
    font-weight: 700;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(66, 165, 245, 0.25);
    }

    .form-control:: placeholder {
        color: var(--text-light);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Custom Checkbox */
.custom-checkbox {
    background-color: var(--bg-blue-lighter);
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

    .custom-checkbox . form-check-input {
        width: 20px;
        height: 20px;
        border: 2px solid var(--primary-color);
        cursor: pointer;
    }

        .custom-checkbox .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

    . custom-checkbox .form-check-label {
        font-size: 0.95rem;
        color: var(--text-dark);
        cursor: pointer;
        margin-left: 10px;
    }

/* Send Message Button */
.btn-send-message {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

    .btn-send-message:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        color: var(--bg-white);
    }

/* Contact Info Card */
.contact-info-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.info-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 25px;
    text-align: center;
}

    .info-header i {
        font-size: 2.5rem;
        margin-bottom: 10px;
        display: block;
    }

    . info-header h3 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
    }

.info-content {
    padding: 30px 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

    .info-item:last-child {
        border-bottom: none;
    }

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

    .info-icon i {
        font-size: 1.5rem;
        color: var(--bg-white);
    }

.info-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

. info-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .info-details a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

/* Social Media Card */
.social-media-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.social-header {
    background-color: var(--bg-blue-light);
    padding: 20px;
    text-align: center;
}

    .social-header i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        display: block;
    }

    . social-header h3 {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-dark);
    }

.social-links {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--bg-white);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

    .social-link i {
        font-size: 1.3rem;
    }

    .social-link. facebook {
        background: linear-gradient(135deg, #3b5998, #2d4373);
    }

    .social-link.twitter {
        background: linear-gradient(135deg, #1da1f2, #0c85d0);
    }

    .social-link.linkedin {
        background: linear-gradient(135deg, #0077b5, #005885);
    }

    .social-link.youtube {
        background: linear-gradient(135deg, #ff0000, #cc0000);
    }

    .social-link.instagram {
        background: linear-gradient(135deg, #e1306c, #c13584);
    }

    .social-link.whatsapp {
        background: linear-gradient(135deg, #25d366, #1da851);
    }

    .social-link: hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

/* Map Section */
.map-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

. map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-light);
}

    .map-container iframe {
        display: block;
    }

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header {
    margin-bottom: 50px;
}

.section-icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.accordion-item {
    border: 2px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

. accordion-button {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding: 20px 25px;
}

    .accordion-button:not(.collapsed) {
        background-color: var(--bg-blue-light);
        color: var(--primary-dark);
        box-shadow: none;
    }

    .accordion-button: focus {
        box-shadow: none;
        border-color: var(--primary-color);
    }

    .accordion-button i {
        transition: transform 0.3s ease;
    }

    .accordion-button: not(.collapsed) i {
        transform: rotate(90deg);
    }

.accordion-body {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

. cta-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

. cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

. cta-section .btn-light {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

    .cta-section .btn-light:hover {
        background-color: var(--bg-light);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.cta-section .btn-outline-light {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

    .cta-section .btn-outline-light:hover {
        background-color: var(--bg-white);
        color: var(--primary-color);
        transform: translateY(-3px);
    }

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2.25rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-card {
        margin-bottom: 30px;
    }

    . social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 50px 0;
    }

    .contact-hero-title {
        font-size: 1.85rem;
    }

    . contact-hero-subtitle {
        font-size: 1rem;
    }

    .hero-icon {
        width: 70px;
        height: 70px;
    }

        . hero-icon i {
            font-size: 2.2rem;
        }

    . contact-form-card {
        padding: 25px 20px;
    }

    .btn-send-message {
        width: 100%;
        padding: 14px 30px;
    }

    .cta-buttons . btn {
        display: block;
        margin: 10px 0 !important;
        width: 100%;
        max-width: 300px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .section-title {
        font-size: 2rem;
    }
}
