/* contact-page-styles.css */

/* --- 1. General & Layout Styles --- */

/* Styles for the map section container (derived from inline style of .w1542 div) */
/* Catatan: class w1542 yang lama akan tetap berlaku */
.map-section-top-padding {
  padding-top: 8% !important;
  max-width: 1524px !important;
}

@media (max-width: 1023px) {
  .map-section-top-padding {
    padding-top: 16% !important;
    max-width: 1524px !important;
  }
}

/* Styles for the main contact content area */
.main-content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Styles for the title div (derived from inline style of .font32 div) */
/* Catatan: class font32 yang lama akan tetap berlaku */
.contact-page-title-style {
    margin-bottom: 30px; 
    text-align: center;
    color: #0169AF;
}

/* Styles for the map container div */
.map-display-style {
    min-height: 700px;
    width: 100%;
    border-radius: 10px;
}

/* --- 2. Section and Grid Styles --- */

/* Styles for the Singapore/Indonesia section containers */
.contact-info-section {
    margin-bottom: 50px;
}

/* Styles for the H2 section title */
.section-title {
    font-size: 2.5em;
    color: #054F99;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Inter-Bold';
}

/* Styles for the grid layout (common to both sections) */
.location-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Specific margin for the Singapore grid (div di dalam section Singapore) */
.sg-grid-bottom-margin {
    margin-bottom: 30px;
}

/* --- 3. Contact Card Styles --- */

.contact-card {
    /* Styles for the white box/card */
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-header-flex {
    /* Styles for the div containing icon and title (Harbourfront, Tanah Merah, etc.) */
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-icon-svg {
    /* Styles for the SVG icon */
    width: 28px;
    height: 28px;
    fill: #0169AF;
}

.card-h3-title {
    /* Styles for the H3 title inside the card */
    font-size: 1.8em;
    color: #0169AF;
    margin: 0;
    font-family: 'Inter-Bold';
}

/* --- 4. Detail Lines & Links Styles --- */

.detail-line-bold {
    /* Styles for the location name (e.g., HarbourFront Centre) */
    margin-bottom: 12px;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    font-family: 'Inter-Medium';
}

.detail-line-address {
    /* Styles for the street address */
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95em;
    font-family: 'Inter-Medium';
}

.contact-links-group {
    /* Styles for the container of Tel/Email/WA links */
    margin-bottom: 10px;
}

.contact-link-base {
    /* Common styles for all anchor tags (Tel, Email, WA) */
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
    font-family: 'Inter-Medium';
}

.link-blue {
    /* Specific color for Tel/Email links */
    color: #0169AF;
}

.link-whatsapp-green {
    /* Specific color for WhatsApp links */
    color: #25D366; 
}

/* --- 5. Operating Hours & Map Button Styles --- */

.operating-hours-box {
    /* Styles for the Operating Hours info box */
    margin: 15px 0;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    color: #555;
    font-size: 0.95em;
    font-family: 'Inter-Medium';
}

.map-button-style {
    /* Styles for the "View on Google Maps" button */
    display: inline-block;
    background: linear-gradient(135deg, #0169AF 0%, #054F99 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 0.95em;
    font-family: 'Inter-Medium';
}

@media (max-width: 768px) {
  #map-container {
    display: none;
  }
}
