:root {
    --container-max: 1400px;
    --pad-x: clamp(15px, 3.2vw, 40px);
    --section-space: 60px;
}

@media screen and (max-width: 1024px) {
    :root { --section-space: 45px; }
}

@media screen and (max-width: 767px) {
    :root { --section-space: 40px; }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.ct-banner {
    position: relative;
    width: 100%;
    height: clamp(180px, 22vw, 320px);
    /* background-image: url("../photos/contact-background.avif"); */
    background-image: url("../photos/contact-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 32, 59, .60);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--pad-x);
}

.ct-banner-overlay h1 {
    color: #fff;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(20px, 4vw + 8px, 56px);
    font-weight: 800;
    margin: 0;
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, .35);
    padding: 0 20px;
    line-height: 1.15;
}

.ct-container {
    width: 100%;
    max-width: var(--container-max);
    margin: var(--section-space) auto;
    padding: 0 var(--pad-x);
}

.ct-title {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 60px);
}

.ct-title h2 {
    color: #082A4D;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(20px, 2vw + 18px, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.25;
}

.ct-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(24px, 3vw, 45px);
    align-items: start;
    max-width: 100%;
}

.ct-info {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2vw, 25px);
    max-width: 100%;
}

.ct-box {
    background: #fff;
    border-radius: 18px;
    padding: clamp(16px, 3vw, 28px);
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    box-sizing: border-box;
    max-width: 100%;
}

.ct-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.ct-box i {
    width: clamp(38px, 5vw, 55px);
    height: clamp(38px, 5vw, 55px);
    min-width: clamp(38px, 5vw, 55px);
    border-radius: 50%;
    background: #082A4D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.6vw, 20px);
}

.ct-box h3 {
    /* margin: 0 0 8px; */
    color: #082A4D;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
}

.ct-box p {
    margin: 0;
    color: #666;
    /* line-height: 1.8; */
}

.ct-box a {
    color: #082A4D;
    font-weight: 600;
    text-decoration: none;
}

.ct-box a:hover {
    color: #FEB73E;
}

.ct-box:hover i {
    background: #FEB73E;
    color: #082A4D;
}
.register{
    color: #082A4D;
}
.ct-form {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: clamp(14px, 3vw, 35px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    box-sizing: border-box;
    max-width: 100%;
}

.ct-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #082A4D);
}

.ct-form h2 {
    margin: 0 0 clamp(18px, 3vw, 30px);
    color: #082A4D;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(17px, 2vw + 14px, 30px);
}

.ct-input-group {
    margin-bottom: 22px;
}

.ct-input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #082A4D;
}

.ct-form input,
.ct-form textarea {
    width: 100%;
    padding: clamp(11px, 2vw, 16px) clamp(12px, 2vw, 18px);
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    outline: none;
    font-size: clamp(12.5px, 0.4vw + 13px, 15px);
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    transition: .3s;
    background: #fff;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
    color: #999;
}

.ct-form input:focus,
.ct-form textarea:focus {
    border-color: #082A4D;
    box-shadow: 0 0 0 4px rgba(8, 42, 77, .10);
}

.ct-form textarea {
    min-height: clamp(120px, 12vw, 180px);
    resize: none;
}

.ct-form button {
    border: none;
    padding: clamp(12px, 1.6vw, 16px);
    border-radius: 12px;
    background: #082A4D;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ct-form button:hover {
    background: #FEB73E;
    color: #082A4D;
    transform: translateY(-2px);
}

.ct-form button:disabled {
    cursor: not-allowed;
    transform: none;
}

.ct-btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: ct-spin 0.7s linear infinite;
}

#ct-submit-btn.ct-loading .ct-btn-text {
    opacity: 0.75;
}

#ct-submit-btn.ct-loading .ct-btn-spinner {
    display: inline-block;
}

@keyframes ct-spin {
    to { transform: rotate(360deg); }
}

.ct-captcha-box {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 15px);
    margin: 25px 0;
    flex-wrap: wrap;
    max-width: 100%;
}

#ct-captchaImg {
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    height: 55px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.ct-refresh-btn {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border: none;
    border-radius: 12px;
    background: #082A4D;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: .3s;
    flex-shrink: 0;
}

.ct-refresh-btn:hover {
    background: #FEB73E;
    color: #082A4D;
    transform: rotate(180deg);
}

#ct-captchaInput {
    min-width: 180px;
    height: 55px;
    padding: 0 18px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    font-family: "Poppins", sans-serif;
    transition: .3s;
    box-sizing: border-box;
}

#ct-captchaInput:focus {
    border-color: #082A4D;
    box-shadow: 0 0 0 4px rgba(8, 42, 77, .10);
}

.ct-captcha-help {
    /* font-size: 18px; */
    color: #666;
    margin: -10px 0 22px;
}

.ct-captcha-help a {
    color: #082A4D;
    font-weight: 600;
    text-decoration: none;
}

.ct-captcha-help a:hover {
    color: #FEB73E;
}

.ct-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.6;
}

.ct-alert-success {
    background: #e6f7ed;
    color: #1b7a43;
    border: 1px solid #b7e4c7;
}

.ct-alert-error {
    background: #fdeaea;
    color: #b3261e;
    border: 1px solid #f3b8b5;
}

.ct-alert-error ul {
    margin: 0;
    padding-left: 18px;
}




@media screen and (max-width: 1024px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-form,
    .ct-info {
        /* max-width: 600px; */
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .ct-captcha-box {
        flex-direction: column;
        align-items: stretch;
    }

    #ct-captchaImg {
        width: 100%;
        max-width: 130px;
        height: 55px;
    }

    .ct-refresh-btn {
        width: 100%;
    }
}