/* ==========================================================================
CONTACT US SECTION SYSTEM ENGINE (contact.css)
========================================================================== */

/* Typography utilities */
.contact-section-title {
font-size: 38px;
font-weight: 800;
line-height: 1.25;
color: var(--text-dark);
margin-bottom: 12px;
letter-spacing: -0.5px;
}

.gold-text {
color: var(--gold) !important;
}

/* STREAMING_CHUNK: Designing contact hero banner style overlay /
/ 1. Contact Hero Banner */
.contact-hero {
position: relative;
background: linear-gradient(rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.88)),
url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=1600&q=80') no-repeat center center / cover;
padding: 140px 0 120px;
color: var(--white);
}

.contact-hero-content {
max-width: 680px;
}

.contact-hero-content .hero-title {
font-size: 46px;
font-weight: 800;
line-height: 1.15;
color: var(--white);
margin-bottom: 24px;
letter-spacing: -1px;
}

.contact-hero-content .hero-desc {
font-size: 16.5px;
color: #E5E7EB;
line-height: 1.65;
font-weight: 400;
}

/* STREAMING_CHUNK: Styling standard grid system for "Get in Touch" cards /
/ 2. Get In Touch Info Cards Grid */
.get-in-touch {
padding: 90px 0 60px;
background-color: var(--white);
}

.git-header {
text-align: center;
margin-bottom: 50px;
}

.git-desc {
font-size: 16px;
color: var(--text-gray);
margin-top: 8px;
}

.git-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.git-card {
background-color: var(--white);
border: 1px solid var(--border-light);
border-radius: 16px;
padding: 30px 24px;
display: flex;
align-items: center;
gap: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.015);
transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.git-card:hover {
transform: translateY(-4px);
border-color: rgba(194, 155, 98, 0.3);
box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}

.git-icon-box {
width: 60px;
height: 60px;
border-radius: 12px;
background-color: #F9FAFB;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
color: var(--gold);
transition: background-color 0.3s, color 0.3s;
}

.git-card:hover .git-icon-box {
background-color: var(--navy);
color: var(--white);
}

.git-info h3 {
font-size: 18px;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 6px;
}

.git-info p {
font-size: 15px;
color: var(--text-gray);
font-weight: 600;
}

/* STREAMING_CHUNK: Engineering message forms and card alignment elements /
/ 3. Send Us a Message Block Form */
.message-form-section {
padding: 40px 0 80px;
background-color: var(--white);
}

.form-wrapper-box {
max-width: 800px;
margin: 0 auto;
background-color: var(--white);
border-radius: 28px;
padding: 50px;
border: 1px solid var(--border-light);
box-shadow: 0 20px 45px rgba(0,0,0,0.03);
}

.form-header {
text-align: center;
margin-bottom: 36px;
}

.form-header h2 {
font-size: 28px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 8px;
}

.form-subtext {
font-size: 15px;
color: var(--text-gray);
}

.contact-form-element {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-row-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}

.form-input-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-input-group label {
font-size: 13.5px;
font-weight: 700;
color: var(--text-dark);
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
width: 100%;
padding: 14px 18px;
border-radius: 8px;
border: 1.5px solid var(--border-light);
background-color: #F9FAFB;
font-family: var(--font-main);
font-size: 14.5px;
color: var(--text-dark);
transition: all 0.3s;
outline: none;
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
border-color: var(--gold);
background-color: var(--white);
box-shadow: 0 4px 12px rgba(194, 155, 98, 0.08);
}

/* Submit CTA Buttons */
.btn-gold-submit {
background-color: var(--gold);
color: var(--white);
padding: 16px 36px;
border-radius: 8px;
font-size: 15px;
font-weight: 700;
border: none;
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 8px 20px rgba(194, 155, 98, 0.2);
}

.btn-gold-submit:hover {
background-color: var(--gold-hover);
transform: translateY(-2px);
box-shadow: 0 12px 24px rgba(194, 155, 98, 0.3);
}

.form-consent-row {
display: flex;
align-items: flex-start;
gap: 12px;
margin-top: 10px;
}

.form-consent-row input[type="checkbox"] {
margin-top: 4px;
cursor: pointer;
accent-color: var(--gold);
}

.form-consent-row label {
font-size: 13px;
color: var(--text-gray);
line-height: 1.4;
cursor: pointer;
}

.form-submit-row {
text-align: center;
margin-top: 15px;
}

/* STREAMING_CHUNK: Drafting maps and responsive containers /
/ 4. Google Maps Frame Container styling */
.interactive-map-section {
padding: 20px 0 60px;
background-color: var(--white);
}

.map-container-frame {
border-radius: 28px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.05);
border: 1px solid var(--border-light);
}

.map-container-frame iframe {
display: block;
}

/* STREAMING_CHUNK: Creating corporate office details layouts /
/ 5. Offices Cards Rows layout */
.our-offices-section {
padding: 60px 0 100px;
background-color: #F9FAFB;
border-top: 1px solid var(--border-light);
}

.offices-header {
text-align: center;
margin-bottom: 60px;
}

.offices-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.office-card {
background-color: var(--white);
border-radius: 20px;
overflow: hidden;
border: 1px solid var(--border-light);
box-shadow: 0 4px 20px rgba(0,0,0,0.015);
transition: transform 0.3s;
}

.office-card:hover {
transform: translateY(-4px);
}

.office-media-box {
height: 240px;
overflow: hidden;
}

.office-media-box img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.office-card:hover .office-media-box img {
transform: scale(1.04);
}

.office-details {
padding: 30px 24px;
}

.office-details h3 {
font-size: 20px;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 16px;
font-family: var(--font-heading);
}

.office-address,
.office-phone {
font-size: 14.5px;
color: var(--text-gray);
line-height: 1.6;
display: flex;
align-items: flex-start;
gap: 10px;
}

.office-address {
margin-bottom: 12px;
}

.office-address i,
.office-phone i {
color: var(--gold);
font-size: 16px;
margin-top: 3px;
flex-shrink: 0;
}

/* STREAMING_CHUNK: Defining responsive stylesheet query systems /
/ ==========================================================================
RESPONSIVE DESIGN SYSTEM OVERRIDES
========================================================================== */
@media (max-width: 991px) {
.git-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.form-wrapper-box {
    padding: 35px 24px;
}

.offices-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}


}

@media (max-width: 768px) {
.contact-hero {
padding: 100px 0;
}

.contact-hero-content .hero-title {
    font-size: 34px;
}

.contact-section-title {
    font-size: 30px;
}

.form-row-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.office-media-box {
    height: 200px;
}


}