/* ============================================
   PROFESSIONAL CONTACT PAGE STYLES
   Modern, Clean & Elegant Design
   ============================================ */

:root {
    --contact-primary: #0d6efd;
    --contact-secondary: #0dcaf0;
    --contact-accent: #0dcaf0;
    --contact-dark: #0f172a;
    --contact-light: #f8fafc;
    --contact-gray: #64748b;
    --contact-border: #e2e8f0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.contact--breadcrumb {
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    padding: 1.25rem 0;
    position: relative;
    overflow: hidden;
}

.contact--breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1));
    pointer-events: none;
}

.contact--breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.contact--breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.contact--breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.contact--breadcrumb .breadcrumb-item a i {
    font-size: 0.9rem;
}

.contact--breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
}

.contact--breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "›";
    font-size: 1rem;
    padding: 0 0.5rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.contact--header-section {
    position: relative;
    padding: 4rem 0 3.5rem;
    background: linear-gradient(180deg, var(--contact-light) 0%, #fff 100%);
    text-align: center;
    overflow: hidden;
}

.contact--header-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact--header-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact--header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
}

.contact--header-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--contact-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact--header-subtitle {
    font-size: 1.1rem;
    color: var(--contact-gray);
    line-height: 1.6;
    font-weight: 400;
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   MAIN CONTENT GRID
   ============================================ */
.contact--clean-grid {
    padding: 4rem 0 5rem;
    background: #fff;
}

/* ============================================
   LEFT SIDE - CONTACT INFO
   ============================================ */
.contact--info-minimal {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact--info-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--contact-light);
}

.contact--info-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--contact-dark);
    letter-spacing: -0.3px;
}

.contact--info-header p {
    color: var(--contact-gray);
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.contact--info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.contact--info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--contact-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact--info-item:hover {
    background: #fff;
    border-color: var(--contact-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.contact--info-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.contact--info-item:hover .contact--info-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.3);
}

.contact--info-details {
    flex: 1;
}

.contact--info-details h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--contact-primary);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact--info-details p,
.contact--info-details a {
    font-size: 0.95rem;
    color: var(--contact-dark);
    margin: 0;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.contact--info-details a:hover {
    color: var(--contact-secondary);
}

.contact--info-details p + p {
    margin-top: 0.25rem;
}

/* Social Links */
.contact--social-minimal {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--contact-light);
}

.contact--social-minimal h5 {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--contact-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact--social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact--social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--contact-light);
    color: var(--contact-gray);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact--social-link:hover {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.25);
}

/* ============================================
   RIGHT SIDE - CONTACT FORM
   ============================================ */
.contact--form-modern {
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--contact-border);
    position: relative;
    overflow: hidden;
}

.contact--form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
}

.contact--form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact--input {
    width: 100%;
    border: 2px solid var(--contact-border);
    padding: 1rem 1rem 1rem 2.75rem;
    font-size: 0.95rem;
    color: var(--contact-dark);
    background: var(--contact-light);
    transition: all 0.3s ease;
    border-radius: 12px;
    font-weight: 500;
}

.contact--input:focus {
    outline: none;
    border-color: var(--contact-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.contact--input::placeholder {
    color: transparent;
}

.contact--label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--contact-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    padding: 0 0.25rem;
}

.contact--label i {
    font-size: 1rem;
    color: var(--contact-primary);
}

textarea.contact--input ~ .contact--label {
    top: 1.25rem;
    transform: none;
}

/* Float Label Effect */
.contact--input:focus ~ .contact--label,
.contact--input:not(:placeholder-shown) ~ .contact--label {
    top: 0;
    left: 0.75rem;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--contact-primary);
    font-weight: 600;
    background: #fff;
    padding: 0 0.5rem;
}

textarea.contact--input:focus ~ .contact--label,
textarea.contact--input:not(:placeholder-shown) ~ .contact--label {
    top: 0;
    transform: translateY(-50%);
}

/* Textarea Specific */
textarea.contact--input {
    min-height: 150px;
    resize: vertical;
    padding-top: 1.25rem;
}

/* Submit Button */
.contact--btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.contact--btn-submit:hover {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.contact--btn-submit:active {
    transform: translateY(0);
}

.contact--btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact--btn-submit:hover i {
    transform: translateX(3px);
}

/* ============================================
   MAP SECTION
   ============================================ */
.contact--map-section {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
    background: var(--contact-light);
}

.contact--map-section iframe {
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.5s ease;
}

.contact--map-section:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.contact--map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact--map-section:hover .contact--map-overlay {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
}

.contact--map-overlay i {
    font-size: 1.5rem;
    color: var(--contact-primary);
}

.contact--map-overlay span {
    font-weight: 600;
    color: var(--contact-dark);
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.contact--faq-modern {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--contact-light) 100%);
}

.contact--faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact--faq-header .text-muted {
    color: var(--contact-primary) !important;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.contact--faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--contact-dark);
}

.contact--faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.contact--faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--contact-border);
    transition: all 0.3s ease;
}

.contact--faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact--faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--contact-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact--faq-btn:hover {
    color: var(--contact-primary);
}

.contact--faq-btn span {
    flex: 1;
}

.contact--faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--contact-light);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--contact-gray);
    transition: all 0.3s ease;
}

.contact--faq-btn[aria-expanded="true"] .contact--faq-icon {
    background: var(--contact-primary);
    color: #fff;
    transform: rotate(45deg);
}

.contact--faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--contact-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .contact--header-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .contact--header-section {
        padding: 3rem 0 2.5rem;
    }
    
    .contact--header-title {
        font-size: 2rem;
    }
    
    .contact--clean-grid {
        padding: 3rem 0 4rem;
    }
    
    .contact--info-minimal {
        margin-bottom: 3rem;
    }
    
    .contact--form-modern {
        padding: 2rem;
    }
    
    .contact--faq-modern {
        padding: 4rem 0;
    }
    
    .contact--faq-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .contact--header-section {
        padding: 2.5rem 0 2rem;
    }
    
    .contact--header-title {
        font-size: 1.75rem;
    }
    
    .contact--header-subtitle {
        font-size: 1rem;
    }
    
    .contact--info-header h2 {
        font-size: 1.5rem;
    }
    
    .contact--info-item {
        padding: 1rem;
    }
    
    .contact--info-icon-wrapper {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
    }
    
    .contact--form-modern {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .contact--input {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }
    
    .contact--btn-submit {
        width: 100%;
        padding: 1rem;
    }
    
    .contact--map-section {
        height: 350px;
    }
    
    .contact--map-overlay {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .contact--faq-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .contact--social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .contact--breadcrumb {
        padding: 1rem 0;
    }
    
    .contact--header-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
    
    .contact--header-title {
        font-size: 1.5rem;
    }
    
    .contact--clean-grid {
        padding: 2rem 0 3rem;
    }
    
    .contact--info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact--info-icon-wrapper {
        margin-bottom: 0.5rem;
    }
    
    .contact--info-details h4 {
        margin-bottom: 0.5rem;
    }
    
    .contact--social-list {
        justify-content: center;
    }
    
    .contact--faq-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.9rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact--info-item,
.contact--faq-item {
    animation: fadeInUp 0.5s ease forwards;
}

.contact--info-item:nth-child(1) { animation-delay: 0.1s; }
.contact--info-item:nth-child(2) { animation-delay: 0.2s; }
.contact--info-item:nth-child(3) { animation-delay: 0.3s; }
.contact--info-item:nth-child(4) { animation-delay: 0.4s; }

.contact--faq-item:nth-child(1) { animation-delay: 0.1s; }
.contact--faq-item:nth-child(2) { animation-delay: 0.15s; }
.contact--faq-item:nth-child(3) { animation-delay: 0.2s; }
.contact--faq-item:nth-child(4) { animation-delay: 0.25s; }
.contact--faq-item:nth-child(5) { animation-delay: 0.3s; }
.contact--faq-item:nth-child(6) { animation-delay: 0.35s; }
