/* ============================================
   HUBUNGI KAMI PAGE STYLES
   Page-specific styles for Contact Us page
   ============================================ */

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #2D7A6E 0%, #1a5a50 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* CONTACT INFO WRAPPER */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* CONTACT INFO CARD */
.contact-info-card {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
    color: #2D7A6E;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.contact-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item .icon {
    font-size: 24px;
    color: #2D7A6E;
    min-width: 30px;
}

.contact-item-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item-content .phone-large {
    font-size: 28px;
    font-weight: bold;
    color: #2D7A6E;
    margin-top: 5px;
}

/* OFFICE HOURS TABLE */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.hours-table thead {
    background: #2D7A6E;
    color: #fff;
}

.hours-table th,
.hours-table td {
    padding: 20px;
    text-align: left;
}

.hours-table th {
    font-weight: 600;
    font-size: 16px;
}

.hours-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.hours-table tbody tr:last-child {
    border-bottom: none;
}

.hours-table tbody tr:hover {
    background: #f9f9f9;
}

.hours-table td {
    font-size: 15px;
}

/* EMERGENCY CONTACTS GRID */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.emergency-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.emergency-card .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.emergency-card h4 {
    color: #2D7A6E;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.emergency-card .phone {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

/* MAP SECTION */
.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #999;
    text-align: center;
    padding: 40px;
}

.map-placeholder p {
    margin: 5px 0;
}

.map-address {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-top: 3px solid #2D7A6E;
}

.map-address h4 {
    color: #2D7A6E;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.map-address p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #2D7A6E 0%, #1a5a50 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-phone {
    font-size: 36px;
    font-weight: bold;
    margin: 30px 0;
    letter-spacing: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .emergency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .contact-item-content .phone-large {
        font-size: 24px;
    }

    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hours-table {
        font-size: 14px;
    }

    .hours-table th,
    .hours-table td {
        padding: 12px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-phone {
        font-size: 24px;
    }

    .map-placeholder {
        height: 300px;
        padding: 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 15px;
    }

    .page-header {
        padding: 60px 15px;
    }

    .contact-item-content .phone-large {
        font-size: 20px;
    }

    .emergency-card {
        padding: 20px;
    }

    .emergency-card .icon {
        font-size: 36px;
    }

    .emergency-card h4 {
        font-size: 16px;
    }

    .emergency-card .phone {
        font-size: 18px;
    }
}