/* =========================================================
   CONTACT PAGE — contact.css
   Requires: styles.css + page-template.css
========================================================= */

/* =========================================================
   CONTACT GRID (info + form side by side)
========================================================= */

.contact-section{
    padding-bottom:80px;
}

.contact-grid{

    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:72px;
    align-items:start;

}

/* =========================================================
   LEFT: CONTACT DETAILS
========================================================= */

.contact-details-title{

    font-family:'Oswald',sans-serif;
    font-size:42px;
    font-weight:700;
    line-height:1.08;
    color:#111;
    margin-bottom:16px;

}

.contact-details-intro{

    font-size:16px;
    line-height:1.85;
    color:#666;
    margin-bottom:36px;

}

/* CONTACT CARDS (email / phone) */

.contact-cards{

    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:44px;

}

.contact-card{

    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 20px;
    border-radius:16px;
    border:1px solid rgba(0,0,0,.08);
    background:#fafafa;
    text-decoration:none;
    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease,
        background .25s ease;

}

.contact-card:hover{

    border-color:rgba(223,177,38,.5);
    box-shadow:0 8px 28px rgba(0,0,0,.07);
    transform:translateX(4px);
    background:#fff;

}

.contact-card-icon{
    font-size:26px;
    flex-shrink:0;
}

.contact-card-body{

    flex:1;
    display:flex;
    flex-direction:column;
    gap:3px;

}

.contact-card-body strong{

    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#aaa;

}

.contact-card-body span{

    font-size:16px;
    font-weight:600;
    color:#111;

}

.contact-card-arrow{

    font-size:18px;
    color:#dfb126;
    font-weight:700;
    transition:transform .2s ease;

}

.contact-card:hover .contact-card-arrow{
    transform:translateX(4px);
}

/* OFFICES */

.contact-offices-title{

    font-family:'Oswald',sans-serif;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1.5px;
    color:#111;
    margin-bottom:16px;
    padding-bottom:12px;
    border-bottom:2px solid rgba(223,177,38,.3);

}

.contact-offices{
    display:flex;
    flex-direction:column;
    gap:0;
}

.contact-office{

    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:20px 0;
    border-bottom:1px solid rgba(0,0,0,.07);

}

.contact-office:last-child{
    border-bottom:none;
}

.contact-office-flag{
    font-size:28px;
    flex-shrink:0;
    margin-top:2px;
}

.contact-office strong{

    display:block;
    font-size:15px;
    font-weight:700;
    color:#111;
    margin-bottom:6px;

}

.contact-office address{

    font-style:normal;
    font-size:14px;
    color:#777;
    line-height:1.7;
    margin-bottom:6px;

}

.contact-office a{

    display:block;
    font-size:14px;
    color:#888;
    text-decoration:none;
    line-height:1.7;
    transition:color .2s ease;

}

.contact-office a:hover{
    color:#dfb126;
}

/* =========================================================
   RIGHT: FORM BLOCK
========================================================= */

.contact-form-block{

    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.07);
    position:sticky;
    top:120px;

}

.contact-form-header{

    padding:28px 32px 20px;
    border-bottom:1px solid rgba(0,0,0,.07);

}

.contact-form-title{

    font-family:'Oswald',sans-serif;
    font-size:24px;
    font-weight:600;
    color:#111;
    margin-bottom:6px;

}

.contact-form-header p{

    font-size:14px;
    color:#aaa;

}

.contact-form-wrapper{

    padding:0;
    width:100%;
    overflow:hidden;

}

.contact-form-wrapper iframe{

    width:100%;
    min-height:560px;
    border:none;
    display:block;

}

/* =========================================================
   MAPS SECTION
========================================================= */

.contact-maps-section{
    padding-bottom:100px;
}

.contact-maps-header{

    text-align:center;
    margin-bottom:52px;

}

.contact-maps-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;

}

.contact-map-card{

    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
    transition:box-shadow .3s ease, transform .3s ease;

}

.contact-map-card:hover{

    box-shadow:0 20px 50px rgba(0,0,0,.11);
    transform:translateY(-4px);

}

/* LABEL ROW */

.contact-map-label-row{

    display:flex;
    align-items:center;
    gap:14px;
    padding:20px 22px;
    border-bottom:1px solid rgba(0,0,0,.07);

}

.contact-map-label-row > span:first-child{
    font-size:28px;
    flex-shrink:0;
}

.contact-map-label-row strong{

    display:block;
    font-size:15px;
    font-weight:700;
    color:#111;
    margin-bottom:2px;

}

.contact-map-label-row span:last-child,
.contact-map-label-row > div > span{

    font-size:13px;
    color:#999;
    display:block;

}

/* MAP IFRAME */

.contact-map-frame{
    height:280px;
    flex:1;
}

.contact-map-frame iframe{

    width:100%;
    height:100%;
    border:none;
    display:block;

}

/* DIRECTIONS LINK */

.contact-map-directions{

    display:block;
    padding:14px 22px;
    border-top:1px solid rgba(0,0,0,.07);
    font-size:13px;
    font-weight:700;
    color:#dfb126;
    text-decoration:none;
    text-align:center;
    letter-spacing:.3px;
    transition:background .2s ease, color .2s ease;

}

.contact-map-directions:hover{

    background:rgba(223,177,38,.06);
    color:#b8911a;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .contact-grid{
        grid-template-columns:1fr;
        gap:52px;
    }

    .contact-form-block{
        position:static;
    }

}

@media(max-width:768px){

    .contact-maps-grid{
        grid-template-columns:1fr;
    }

    .contact-details-title{
        font-size:34px;
    }

    .contact-map-frame{
        height:240px;
    }

}
