.section-padding {
    padding: var(--section-padding);
}
.bg-light {
    background-color: var(--light-grey);
}

/* Hero Image Section (can reuse from about.css if identical) */
.hero-image-section {
    height: 40vh; /* Adjust as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.hero-content {
    position: relative; z-index: 1;
}
.hero-content h1 { font-size: 2.8em; color: #fff; margin-bottom: 10px; }
.hero-content p { font-size: 1.1em; }

/* Offices Section */
.office-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.office-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-left: 4px solid var(--primary-blue);
    aspect-ratio: 1 / 1; /* Make height equal to width by default */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.office-card-content {
    overflow: hidden;
    position: relative;
}

.office-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
}

.office-card p {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.office-card .address { font-style: italic; }
.office-card .whatsapp a { color: #25D366; font-weight: bold; }
.office-card .whatsapp a:hover { text-decoration: underline; }

.show-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 30px 0 10px 0;
    background-image: linear-gradient(to bottom, transparent, white 70%);
    cursor: pointer;
    font-weight: bold;
    color: var(--primary-blue);
}

.office-card.expanded {
    aspect-ratio: auto; /* Remove the aspect ratio constraint */
    height: auto; /* Allow height to adjust to content */
}

.office-card.expanded .show-more {
    background-image: none;
    position: relative;
    padding: 10px 0;
}

/* Contact Form & Info Section */
.contact-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap; /* For responsiveness */
}

.contact-form-container {
    flex: 1.5; /* Form takes more space */
    min-width: 300px;
}
.contact-info-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h3, .contact-info-container h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 1.8em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--dark-grey);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
.form-group textarea {
    resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 87, 184, 0.2);
}

#main-contact-form button.btn {
    padding: 12px 25px;
}

.contact-info-container p {
    margin-bottom: 20px;
}

.contact-info-container ul {
    list-style: none;
    padding: 0;
}

.contact-info-container ul li {
    margin-bottom: 12px;
    font-size: 1em;
    display: flex; /* For icon alignment if you add real icons */
    align-items: center;
}
.contact-info-container ul li strong { /* For [ICON text] */
    margin-right: 8px;
    color: var(--primary-blue);
}

.map-placeholder {
    margin-top: 30px;
    width: 100%;
    height: 300px; /* Adjust as needed */
    background-color: #e9e9e9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }
}