.contact-us{
    padding: 40px 120px 60px;
    font-family: 'DM Sans',serif;
}
.contact-inner{
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
.contact-left{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
}
.contact-pill{
    width: max-content;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00c;
    border: 1px solid #00c;
    border-radius: 13px;
    background: #f5f7fb;
}
.contact-title{
    font-family: 'Playfair Display',sans-serif;
    font-size: 28px;
    color: #000354;
    line-height: 1.02;
    margin-bottom: 5px;
}
.contact-title em{
    color: blue;
}
.contact-body{
    color: #8c8c8c;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.info-cards{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}
.info-card{
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgb(187, 187, 190);
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.info-label{
    font-size: 16px;
    font-weight: 500;
}
.info-val{
    color: #454545;
    font-size: 14px;
}
.info-card:hover{
    transform: translateX(5px);
    border-color: #00c;
}

.info-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid blue;
    height: 35px; width: 35px;
    color: blue;
    border-radius: 4px;
    background-color: #e6e6e6d6;
}
.social-row .info-label{
    font-weight: 700;
    color: black;
    font-size: 20px;
    margin-bottom: 5px;
}
.social-icons{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    font-size: 30px;
}
.social-icons a{
    text-decoration: none;
    color: black;
    
}
.fa-whatsapp{
    transition: all 0.3s;
}
.fa-whatsapp:hover{
    color: rgb(10, 203, 10);
}
/*form*/
form{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 600px;
}
.form-card h2{
    width: 100%;
    text-align: center;
}
.form-title{
    color: #0d1c3b;
    font-size: 36px;
    margin-bottom: 10px;
}
.form-title em{
    color: blue;
    font-family: 'Playfair Display',serif;
}
.form-body{
    text-align: center;
    color: #8c8c8c;
    font-weight: 600;
    margin-bottom: 20px;
}
.form-note{
    color: black;
    font-size: 12px;
    text-align: center;
}
.input-group{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
}
.filed{
    position: relative;
    width: 100%;
}
.filed label{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 14px;
    background-color: transparent;
    color: #4f5157;
}
.filed input,
.filed select{
    height: 40px;
    width: 100%;
    padding: 4px 10px;
    font-size: 16px;
    outline: none;
    border-radius: 10px;
    border: 1px solid #e0e6f0;
    background: #f5f7fb;
}
.filed select {
    appearance: none; /* removes default arrow */
    outline: none;
    cursor: pointer;
}
.filed input:focus + label,
.filed input:not(:placeholder-shown) + label {
    top: -1px;
    font-size: 13px;
    color: #00579e;
    background: #fff;
}
.filed input:not(:placeholder-shown) + label{
    top: -1px;
    font-size: 13px;
    color: #00579e;
    background: linear-gradient(180deg,#fff,#fff,#f5f7fb);
}
.filed select:valid + label {
    top: -1px;
    font-size: 13px;
    color: #00579e;
    background-color: #fff;
}
textarea{
    width: 100%;
    height: 90px;
    resize: none;
    border: 1px solid #bbcceb;
    background: #f5f7fb;
    outline: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    font-family: 'DM Sans',sans-serif;
}
.filed input:focus,
textarea:focus {
    border-color: #00579e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 87, 158, 0.1);
}
.btns{
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.btn{
    width: 100%;
    height: 38px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 20px;
    background-color: rgb(8, 8, 105);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    line-height: 1.2;
    text-decoration: none;
}
.btn.WhatsApp{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgb(8, 197, 8);
}
.btn.WhatsApp i{
    font-size: 20px;
}
.contact-us {
    padding: 40px 120px 60px;
    font-family: 'DM Sans', serif;
}
.contact-inner {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
}
.contact-pill {
    width: max-content;
    padding: 5px 10px;
    text-transform: uppercase;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00c;
    border: 1px solid #00c;
    border-radius: 13px;
    background: #f5f7fb;
}
.contact-title {
    font-family: 'Playfair Display', sans-serif;
    font-size: 28px;
    color: #000354;
    line-height: 1.02;
    margin-bottom: 5px;
}
.contact-title em {
    color: blue;
}
.contact-body {
    color: #8c8c8c;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}
.info-card {
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgb(187, 187, 190);
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.info-label {
    font-size: 16px;
    font-weight: 500;
}
.info-val {
    color: #454545;
    font-size: 14px;
}
.info-card:hover {
    transform: translateX(5px);
    border-color: #00c;
}
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid blue;
    height: 35px;
    width: 35px;
    color: blue;
    border-radius: 4px;
    background-color: #e6e6e6d6;
    flex-shrink: 0;
}
.social-row .info-label {
    font-weight: 700;
    color: black;
    font-size: 20px;
    margin-bottom: 5px;
}
.social-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    font-size: 30px;
}
.social-icons a {
    text-decoration: none;
    color: black;
}
.fa-whatsapp {
    transition: all 0.3s;
}
.fa-whatsapp:hover {
    color: rgb(10, 203, 10);
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 600px;
    width: 100%;
}
.form-card h2 {
    width: 100%;
    text-align: center;
}
.form-title {
    color: #0d1c3b;
    font-size: 36px;
    margin-bottom: 10px;
}
.form-title em {
    color: blue;
    font-family: 'Playfair Display', serif;
}
.form-body {
    text-align: center;
    color: #8c8c8c;
    font-weight: 600;
    margin-bottom: 20px;
}
.form-note {
    color: black;
    font-size: 12px;
    text-align: center;
}
.input-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
}
.filed {
    position: relative;
    width: 100%;
}
.filed label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 14px;
    background-color: transparent;
    color: #4f5157;
}
.filed input,
.filed select {
    height: 40px;
    width: 100%;
    padding: 4px 10px;
    font-size: 16px;
    outline: none;
    border-radius: 10px;
    border: 1px solid #e0e6f0;
    background: #f5f7fb;
}
.filed select {
    appearance: none;
    outline: none;
    cursor: pointer;
}
.filed input:focus + label,
.filed input:not(:placeholder-shown) + label {
    top: -1px;
    font-size: 13px;
    color: #00579e;
    background: #fff;
}
.filed input:not(:placeholder-shown) + label {
    top: -1px;
    font-size: 13px;
    color: #00579e;
    background: linear-gradient(180deg, #fff, #fff, #f5f7fb);
}
.filed select:valid + label {
    top: -1px;
    font-size: 13px;
    color: #00579e;
    background-color: #fff;
}
textarea {
    width: 100%;
    height: 90px;
    resize: none;
    border: 1px solid #bbcceb;
    background: #f5f7fb;
    outline: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}
.filed input:focus,
textarea:focus {
    border-color: #00579e;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 87, 158, 0.1);
}
.btns {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}
.btn {
    width: 100%;
    height: 38px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 20px;
    background-color: rgb(8, 8, 105);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    line-height: 1.2;
    text-decoration: none;
}
.btn.WhatsApp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgb(8, 197, 8);
}
.btn.WhatsApp i {
    font-size: 20px;
}

/* ── Responsive ── */

/* Tablet: side-by-side but tighter */
@media (max-width: 1100px) {
    .contact-us {
        padding: 40px 48px 60px;
    }
    .contact-inner {
        gap: 30px;
    }
    .form-title {
        font-size: 28px;
    }
}

/* Mobile landscape / small tablet: stack vertically */
@media (max-width: 768px) {
    .contact-us {
        padding: 32px 24px 48px;
    }
    .contact-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
    }
    .contact-left {
        max-width: 100%;
    }
    .contact-title {
        font-size: 24px;
    }
    form {
        max-width: 100%;
        gap: 20px;
    }
    .form-title {
        font-size: 26px;
    }
    /* Stack the two-column input row */
    .input-group {
        flex-direction: column;
        gap: 20px;
    }
    .info-card:hover {
        transform: none; /* avoid layout shift on touch */
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .contact-us {
        padding: 24px 16px 40px;
    }
    .contact-title {
        font-size: 22px;
    }
    .contact-body {
        font-size: 14px;
    }
    .form-title {
        font-size: 22px;
    }
    /* Stack buttons vertically on very small screens */
    .btns {
        flex-direction: column;
    }
    .btn {
        font-size: 16px;
    }
    .social-icons {
        font-size: 24px;
    }
}