﻿/* ============================================================
   CONTACT PAGE STYLES - PAKMEDICS
   ============================================================ */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #0d7c6e 0%, #095a4f 50%, #0a5c4f 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.contact-hero h1 span {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: #0d7c6e;
}

.contact-info-icon {
    font-size: 32px;
    color: #0d7c6e;
    display: block;
    margin-bottom: 6px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.contact-info-value {
    display: block;
    font-weight: 600;
    color: #0a1a1f;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    color: #0d7c6e;
    text-decoration: none;
}

.contact-info-sub {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}

.contact-form-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.contact-form-header h4 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 18px;
}

.contact-form-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #64748b;
}

.contact-form-body {
    padding: 24px;
}

/* Office Info Card */
.office-info-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 16px;
}

.office-info-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.office-info-header h5 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 16px;
}

.office-info-body {
    padding: 16px 20px;
}

.office-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.office-item:last-child {
    border-bottom: none;
}

.office-icon {
    font-size: 18px;
    color: #0d7c6e;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.office-content {
    flex: 1;
    min-width: 0;
}

.office-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-value {
    display: block;
    font-weight: 500;
    color: #0a1a1f;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-value:hover {
    color: #0d7c6e;
    text-decoration: none;
}

.office-sub {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}

/* Social Card */
.social-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}

.social-card-header {
    padding: 14px 20px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.social-card-header h6 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 14px;
}

.social-card-body {
    padding: 16px 20px;
}

.social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    border: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #ff0000; }
.social-link.twitter { background: #000000; }
.social-link.linkedin { background: #0a66c2; }
.social-link.whatsapp { background: #25d366; }

/* Team Section */
.team-section {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 24px;
}

.team-header h5 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 18px;
}

.team-header p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #64748b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.team-member {
    text-align: center;
    padding: 16px 12px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.team-member:hover {
    border-color: #0d7c6e;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d7c6e, #10a58a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 8px;
    border: 3px solid white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.team-name {
    font-weight: 600;
    color: #0a1a1f;
    font-size: 14px;
}

.team-role {
    font-size: 12px;
    color: #94a3b8;
}

/* Map Section */
.map-section {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}

.map-header {
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-header h6 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 15px;
}

.map-toggle {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 4px 8px;
}

.map-toggle:hover {
    color: #0d7c6e;
}

.map-container {
    height: 350px;
    overflow: hidden;
    transition: height 0.4s ease;
}

.map-container.map-collapsed {
    height: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 30px 20px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-info-grid {
        gap: 12px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 1.6rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 200px;
    }

    .contact-form-header {
        padding: 16px;
    }

    .contact-form-body {
        padding: 16px;
    }

    .office-info-body {
        padding: 12px 16px;
    }

    .social-icons {
        justify-content: center;
    }
}