/*css untuk halaman kontak  */
/* Main Contact Section */
.contact-main {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.section-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.section-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1a73e8;
    color: #0d47a1;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    font-size: 32px;
    color: #1a73e8;
}

/* Contact Information */
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f5f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 24px;
    flex-shrink: 0;
}

.contactdetails h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #0d47a1;
}

.contactdetails p {
    font-size: 17px;
    color: #5f6368;
    margin-bottom: 5px;
}

.contactdetails a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
}

.contactdetails a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* Working Hours */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

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

.hours-table td {
    padding: 12px 0;
    font-size: 16px;
}

.hours-table td:first-child {
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
    color: #5f6368;
}

/* Map Section */
.map-container {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #e9ecef;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.map-overlay-content h3 {
    margin-bottom: 10px;
    color: #0d47a1;
}

.map-overlay-content p {
    margin-bottom: 5px;
    color: #5f6368;
    font-size: 14px;
}

.directions-btn {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.directions-btn:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.map-placeholder i {
    font-size: 100px;
    color: #1a73e8;
    opacity: 0.5;
}