@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
    --green:#14382F;
    --green-dark:#0C2722;
    --gold:#C6A15B;
    --beige:#F6F1E8;
    --cream:#FFFDF8;
    --soft:#EFE4D3;
    --text:#1F2F2B;
    --muted:#74695C;
    --border:rgba(198,161,91,.25);
}

body{
    font-family:"Inter",sans-serif;
    background:var(--beige);
    color:var(--text);
}

.contact-hero{
    padding:110px 20px 85px;
    text-align:center;
    background:
        radial-gradient(circle at 15% 25%,rgba(198,161,91,.15),transparent 28%),
        linear-gradient(135deg,var(--cream),var(--beige));
}

.section-label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:800;
}

.contact-hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(60px,7vw,110px);
    color:var(--green);
    margin:18px 0;
}

.contact-hero p{
    max-width:760px;
    margin:auto;
    color:var(--muted);
    font-size:19px;
    line-height:1.8;
}

.contact-section{
    padding:80px 0;
}

.contact-alert{
    max-width:1180px;
    margin:0 auto 30px;
    border-radius:16px;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-bottom:60px;
}

.contact-info-card{
    background:white;
    border:1px solid var(--border);
    border-radius:26px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 18px 45px rgba(20,56,47,.08);
}

.contact-info-card i{
    width:62px;
    height:62px;
    border-radius:50%;
    background:var(--green);
    color:white;
    display:grid;
    place-items:center;
    font-size:28px;
    margin:0 auto 18px;
}

.contact-info-card h3{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:30px;
}

.contact-info-card p{
    color:var(--muted);
    margin:0;
}

.contact-layout{
    display:grid;
    grid-template-columns:38% 62%;
    gap:34px;
}

.contact-text-card,
.contact-form-card{
    background:white;
    border:1px solid var(--border);
    border-radius:30px;
    padding:42px;
    box-shadow:0 20px 55px rgba(20,56,47,.08);
}

.contact-text-card h2{
    font-family:"Cormorant Garamond",serif;
    color:var(--green);
    font-size:52px;
    margin:18px 0;
}

.contact-text-card p{
    color:var(--muted);
    line-height:1.8;
    font-size:17px;
}

.contact-note{
    margin-top:30px;
    padding:20px;
    border-radius:20px;
    background:var(--beige);
    display:flex;
    gap:14px;
    color:var(--green);
    font-weight:700;
}

.contact-note i{
    color:var(--gold);
    font-size:24px;
}

.contact-form-card label{
    color:var(--green);
    font-weight:800;
    margin-bottom:8px;
}

.contact-input{
    min-height:58px;
    border-radius:16px;
    border:1px solid var(--border);
    background:var(--cream);
    padding:14px 18px;
    color:var(--text);
}

textarea.contact-input{
    min-height:150px;
}

.contact-input:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 4px rgba(198,161,91,.12);
}

.contact-btn{
    min-height:58px;
    padding:0 30px;
    border:none;
    border-radius:50px;
    background:var(--green);
    color:white;
    font-weight:800;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:.3s;
}

.contact-btn:hover{
    background:var(--gold);
    color:var(--green-dark);
    transform:translateY(-4px);
}

.contact-map-section{
    padding:20px 0 90px;
}

.map-placeholder{
    background:var(--green);
    color:white;
    border-radius:34px;
    padding:70px 30px;
    text-align:center;
}

.map-placeholder i{
    font-size:46px;
    color:var(--gold);
}

.map-placeholder h3{
    font-family:"Cormorant Garamond",serif;
    font-size:44px;
    margin:16px 0 8px;
}

.map-placeholder p{
    color:#E8DCC8;
}

@media(max-width:991px){
    .contact-info-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-layout{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){
    .contact-section{
        padding:60px 20px;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-text-card,
    .contact-form-card{
        padding:30px 22px;
    }

    .contact-text-card h2{
        font-size:40px;
    }
}

/* =========================================
   CONTACT / WORK WITH US TOGGLE
========================================= */

.contact-toggle{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:28px;
    padding:6px;
    background:var(--beige);
    border:1px solid var(--border);
    border-radius:50px;
    width:fit-content;
}

.toggle-btn{
    min-width:150px;
    padding:12px 22px;
    border:none;
    border-radius:50px;
    background:transparent;
    color:var(--green);
    font-weight:800;
    cursor:pointer;
    transition:.25s ease;
}

.toggle-btn:hover{
    background:rgba(20,56,47,.08);
}

.toggle-btn.active{
    background:var(--green);
    color:#fff;
    box-shadow:0 8px 20px rgba(20,56,47,.18);
}

/* =========================================
   TOGGLE FORMS
========================================= */

.toggle-form{
    display:none;
}

.toggle-form.active{
    display:block;
}

/* =========================================
   CV INPUT
========================================= */

input[type="file"].contact-input{
    padding:10px 14px;
    cursor:pointer;
}

input[type="file"].contact-input::file-selector-button{
    margin-right:14px;
    padding:10px 16px;
    border:none;
    border-radius:10px;
    background:var(--green);
    color:#fff;
    font-weight:700;
    cursor:pointer;
    transition:.25s ease;
}

input[type="file"].contact-input::file-selector-button:hover{
    background:var(--gold);
    color:var(--green-dark);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:576px){

    .contact-toggle{
        width:100%;
        border-radius:18px;
    }

    .toggle-btn{
        flex:1;
        min-width:0;
        padding:12px 10px;
        font-size:13px;
    }
}

.alert-success{
    background:#EAF8EF;
    border:1px solid #9AD8AF;
    color:#14532D;
    border-radius:14px;
    padding:16px 20px;
    margin-bottom:20px;
    font-weight:600;
}

.alert-danger{
    background:#FDECEC;
    border:1px solid #F5B5B5;
    color:#991B1B;
    border-radius:14px;
    padding:16px 20px;
    margin-bottom:20px;
    font-weight:600;
}


/* =========================================
   LOCATION / MAP SECTION
========================================= */

.contact-map-section {
    padding: 20px 0 90px;
}

.location-card{
    display: grid;
    grid-template-columns: 360px 1fr;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(20,56,47,.10);
    align-items: stretch;
}

.location-content {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(
            circle at bottom right,
            rgba(198, 161, 91, 0.12),
            transparent 45%
        ),
        var(--cream);
}

.location-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1.1;
    color: var(--green);
    margin: 12px 0 15px;
}

.location-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.location-details div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
}

.location-details i {
    color: var(--gold);
    font-size: 18px;
}

.location-content .contact-btn {
    width: fit-content;
    min-height: 52px;
    padding: 0 22px;
    text-decoration: none;
    font-size: 14px;
}

.location-map{
    background: var(--green);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-map iframe{
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 18px;
    display: block;
}

/* Tablet */
@media (max-width:991px){

    .location-card{
        grid-template-columns:1fr;
    }

    .location-map{
        padding:18px;
    }

    .location-map iframe{
        height:320px;
    }

}