.contact-section-tt {
    padding: 80px 20px;
    background-color: #add8e6; 
}

.contact-center-tt {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-title-tt {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #195fab;
}

.location-container-tt {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.location-card-tt.zoe-card-style {
    /* Ang Card Container */
    background-color: #a6dbe5; 
    color: #333; /* Darker text color */
    padding: 30px 20px; 
    border-radius: 20px; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
    max-width: 900px;
    width: 100%;
    
    /* LAYOUT BASE: Flexbox */
    display: flex;
    flex-direction: column; /* MOBILE: column */
    gap: 20px; 
    align-items: center;
    text-align: center;
    
    /* Critical for map overflow fix */
    overflow: hidden; 
}


/* -- MOBILE MAP/DETAILS CONTAINER (KEEP) -- */

.map-and-logo-container-tt {
    flex: 1 1 100%; 
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Critical for map overflow fix */
}

.location-details-tt {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    padding: 0 10px; /* Text padding adjustment */
}


/* -- ASPECT RATIO STYLING (KEEP) -- */

.map-responsive-wrapper {
    position: relative;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden; 
    border-radius: 10px; 
}

.map-iframe-zoe-style {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important; 
    height: 100% !important;
    display: block;
    
    /* ZOE H&C Map Frame Style */
    border: 3px solid white; 
    border-radius: 10px; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); 
}

/* -- DESKTOP LAYOUT (MEDIA QUERY) (KEEP) -- */

@media (min-width: 768px) {
    .location-card-tt.zoe-card-style {
        flex-direction: row;
        justify-content: space-between;
        padding: 50px 40px; 
        text-align: left;
    }
    
    .map-and-logo-container-tt {
        flex: 0 0 58%; 
        overflow: visible;
    }
    
    .location-details-tt {
        flex: 0 0 38%;
        padding: 0;
    }
}


/* -- TEXT STYLES (KEEP) -- */

.location-heading-tt {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #1361b0; 
}

.location-address-tt {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333; 
}

/* FOOTER CONTACTS STYLES (KEEP) */
.contact-info-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-info-buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Default background para sa links */
    background-color: #2b8bcb; 
}

.contact-info-buttons a:hover {
    background-color: #0f4b72;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-info-buttons a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


/* FOOTER MEDIA QUERY (KEEP) */
@media (max-width: 768px) {
    .contact-info-buttons {
        flex-direction: column;
        align-items: center;
    }
}