*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: "Pangram", sans-serif;
    color: #243933;
    background-color: #243933;
}

.h-font {
    font-family: "Montserrat", sans-serif;
}

.coming-soon-hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    overflow: hidden;
    background-color: #243933;
    background-image: url("../../images/banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 22, 19, 0.12) 0%,
        rgba(36, 57, 51, 0.28) 50%,
        rgba(36, 57, 51, 0.45) 100%
    );
    pointer-events: none;
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
    max-height: calc(100vh - 32px);
    padding: 3px;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(182, 138, 93, 0.65), rgba(255, 255, 255, 0.35));
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(36, 57, 51, 0.1);
}

.coming-soon-card-inner {
    display: flex;
    align-items: stretch;
    max-height: calc(100vh - 38px);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 245, 239, 0.95) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.coming-soon-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    text-align: center;
    border-right: 1px solid rgba(182, 138, 93, 0.25);
}

.coming-soon-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 44px;
    overflow: hidden;
}

.coming-soon-logo {
    width: 88%;
    max-width: 300px;
    max-height: 150px;
    height: auto;
    object-fit: contain;
}

.coming-soon-right-header {
    margin-bottom: 20px;
    text-align: center;
}

.coming-soon-right-header .coming-soon-divider {
    justify-content: center;
    margin: 12px auto 14px;
}

.coming-soon-title {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.08em;
    color: #243933;
    text-transform: uppercase;
}

.coming-soon-divider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coming-soon-divider span:nth-child(1),
.coming-soon-divider span:nth-child(3) {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b68a5d);
}

.coming-soon-divider span:nth-child(3) {
    background: linear-gradient(90deg, #b68a5d, transparent);
}

.coming-soon-divider span:nth-child(2) {
    width: 4px;
    height: 4px;
    background: #b68a5d;
    transform: rotate(45deg);
}

.form-heading {
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    color: #243933;
}

.form-subheading {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    color: rgba(36, 57, 51, 0.72);
}

.vankriti-form {
    width: 100%;
    margin-top: 22px;
}

.form-group-full {
    width: 100%;
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 4px;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #243933;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #b68a5d;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-icon svg {
    width: 18px;
    height: 18px;
}

.input-wrap:focus-within .input-icon {
    color: #243933;
}

.form-group input {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px 14px 48px;
    border: 1px solid rgba(36, 57, 51, 0.15);
    border-radius: 6px;
    background: #fff;
    font-family: "Pangram", sans-serif;
    font-size: 14px;
    color: #243933;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus {
    border-color: #b68a5d;
    box-shadow: 0 0 0 3px rgba(182, 138, 93, 0.15);
}

.invalid-feedback {
    display: none;
    margin-top: 4px;
    font-size: 11px;
    color: #c0392b;
}

.invalid-feedback.show {
    display: block;
}

.def-btn {
    display: inline-block;
    min-width: 160px;
    background-color: #b68a5d;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    padding: 14px 28px;
    border: 0;
    border-radius: 6px;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.def-btn:hover {
    background-color: #243933;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(36, 57, 51, 0.2);
}

.def-btn-full {
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
}

.back-home-link {
    display: block;
    margin-top: 18px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #243933;
    transition: color 0.25s ease;
}

.back-home-link:hover {
    color: #b68a5d;
}

@media (max-width: 991px) {
    html,
    body {
        overflow: auto;
    }

    .coming-soon-hero {
        height: auto;
        min-height: 100vh;
        max-height: none;
        overflow: visible;
        padding: 24px 16px;
    }

    .coming-soon-content,
    .coming-soon-card-inner {
        max-height: none;
    }

    .coming-soon-card-inner {
        flex-direction: column;
    }

    .coming-soon-left {
        flex: none;
        padding: 36px 28px 28px;
        border-right: 0;
        border-bottom: 1px solid rgba(182, 138, 93, 0.25);
    }

    .coming-soon-right {
        padding: 28px 24px 32px;
    }

    .coming-soon-logo {
        width: auto;
        max-width: 260px;
        max-height: 110px;
    }

    .coming-soon-right-header {
        margin-bottom: 14px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .coming-soon-hero {
        background-image: url("../../images/mbanner.jpg");
        background-attachment: scroll;
    }

    .coming-soon-overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 22, 19, 0.1) 0%,
            rgba(36, 57, 51, 0.3) 50%,
            rgba(36, 57, 51, 0.55) 100%
        );
    }

    .coming-soon-logo {
        max-height: 90px;
    }

    .coming-soon-title {
        font-size: clamp(24px, 7vw, 30px);
    }

    .form-heading {
        font-size: 18px;
    }

    .form-subheading {
        margin-bottom: 14px;
        font-size: 13px;
    }
}

html:has(body.thankyou-body),
body.thankyou-body {
    overflow: auto;
    background-color: #F4ECE1;
    color: #243933;
}

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background-color: #F4ECE1;
    overflow: auto;
}

.thankyou-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    text-align: center;
}

.thankyou-logo {
    width: auto;
    max-width: 280px;
    max-height: 120px;
    margin-bottom: 64px;
    object-fit: contain;
}

.thankyou-heading {
    
    margin: 0 0 16px;
    font-size: clamp(28px, 4.2vw, 42px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: #243933;
}

.thankyou-heading span {
    display: block;
    font-weight: 600;
}

.thankyou-text {
    max-width: 520px;
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(36, 57, 51, 0.85);
}

.thankyou-quote {
    max-width: 520px;
    margin: 0 0 36px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #243933;
}

.thankyou-inner .def-btn {
    min-width: 200px;
    text-align: center;
}

@media (max-width: 767px) {
    .thankyou-page {
        padding: 32px 20px;
    }

    .thankyou-logo {
        max-width: 220px;
        max-height: 90px;
        margin-bottom: 24px;
    }

    .thankyou-heading {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 14px;
    }

    .thankyou-text {
        font-size: 15px;
    }

    .thankyou-quote {
        font-size: 15px;
        margin-bottom: 28px;
    }
}
