@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

.header {
    background: transparent !important;
    display: block !important;
    position: relative !important;
}

.shared-layout .header-container {
    justify-content: space-between !important;
}

.contact-main {
    width: 100%;
    height: 100%;
    margin: 80px auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    overflow: hidden !important;

}

.contact-hero {
    text-align: center;
    margin-bottom: 30px;
}

.contact-title {
    font-family: var(--font-circe);
    font-size: 100px;
    font-weight: 800;
    margin-bottom: 0px;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
}

.contact-subtitle {
    font-family: var(--font-circular);
    font-size: 32px;
    color: var(--white);
    font-weight: 400;
}

.contact-container {
    width: 100%;
    max-width: 1811px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: 10px;
    display: flex;
    padding: 20px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
    min-height: 850px;
    gap: 20px;
}

/* Left Sidebar - Contact Info */
.contact-info {
    background-color: #3e3560;
    color: var(--white);
    padding: 40px;
    width: 33.333%;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.info-title {
    margin-bottom: 15px;
    color: var(--white);
    font-family: "FONTSPRING DEMO - Circe";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: var(--font-circular);
}

.info-list {
    list-style: none;
    padding: 50px 0 0;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

.info-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon img {
    width: 60;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.info-text {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.info-item:first-child .info-text {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* Design Decorations on Info Box - Pixel Perfect positioning from Figma */
.info-decoration {
    position: absolute;
    top: 71%;
    left: 22.5%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 20;
}

.info-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right Side - Form */
.contact-form-wrapper {
    width: 66.666%;
    padding: 40px 60px 30px 40px;
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-row {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: #3E3560;
    font-family: 'Apis', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.form-group label[for="message"] {
    color: #8D8D8D;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 2px solid #E0E0E0;
    padding: 10px 0;
    font-family: var(--font-circular);
    font-size: 16px;
    color: #000;
    background: transparent;
    outline: none;
    transition: 0.3s;
    resize: none;
}

.form-group textarea {
    height: 60px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #BDBDBD;
}

.form-group input {
    border-bottom-color: var(--primary-purple);
}

.form-group textarea {
    border-bottom-color: #8D8D8D;
}

/* Subject Selection */
.subject-selection {
    margin: 0 0 50px;
}

.selection-title {
    color: #3E3560;
    font-family: 'Apis', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 40px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    gap: 15px;
    transition: color 0.3s;
}

.radio-label:has(input:checked) {
    color: #EC9502;
}

.radio-label input {
    display: none;
}

.custom-radio {
    width: 19.685px;
    height: 20.05px;
    border-radius: 50%;
    background: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}

.radio-label input:checked+.custom-radio {
    background: var(--orange);
}

.radio-label input:checked+.custom-radio::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* Footer / Button */
.form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.send-btn {
    background: #3e3560;
    color: white;
    border: none;
    padding: 15px 48px;
    width: 324px;
    height: 82px;
    border-radius: 5px;
    font-family: var(--font-circe), sans-serif;
    font-size: 30px;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(62, 53, 96, 0.3);
}

.send-btn img {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
}

.send-btn:hover {
    background: #2a2444;
    transform: translateY(-2px);
}

.form-disclaimer {
    margin-top: 30px;
    max-width: 700px;
}

.form-disclaimer p {
    color: #3E3560;
    font-family: 'Apis', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.form-disclaimer a {
    color: #3E3560;
    text-decoration: underline;
}

/* Disclaimer at very bottom */
.contact-disclaimer {
    width: 100%;
    max-width: 1578px;
    margin: 80px 0 0;
    text-align: left;
    font-family: var(--font-circular);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-disclaimer a {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1850px) {
    .contact-container {
        max-width: 95%;
    }
}

@media (max-width: 1400px) {
    .form-footer {
        margin-top: 30px;
    }
}
@media (max-width: 1200px) {
    .contact-card {
        flex-direction: column;
        padding: 20px;
    }

    .contact-info {
        width: 100%;
        height: auto;
        padding-bottom: 100px;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 40px 20px;
    }

    .contact-title {
        font-size: 60px;
    }

    .info-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-subtitle {
        font-size: 24px;
    }

    .contact-card {
        padding: 10px;
        position: relative;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .info-title {
        font-size: 28px;
    }

    .info-list {
        padding: 30px 0 0;
    }

    .info-item {
        margin-bottom: 30px;
        gap: 20px;
    }

    .info-icon {
        width: 30px;
        height: 30px;
    }

    .info-icon img {
        width: 100%;
        height: 100%;
    }

    .info-text {
        font-size: 18px;
    }

    .info-decoration {
        display: none;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .form-group label {
        font-size: 18px;
    }

    .subject-selection {
        margin-bottom: 30px;
    }

    .selection-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .radio-group {
        gap: 20px;
    }

    .radio-label {
        font-size: 14px;
    }

    .contact-form > .form-group {
        margin-bottom: 30px;
    }

    .form-footer {
        margin-top: 30px;
        padding-bottom: 10px;
    }

    .send-btn {
        width: 100%;
        height: 60px;
        font-size: 20px;
        padding: 10px 48px;
    }

    .send-btn img {
        width: 24px;
        height: 24px;
    }

    .form-disclaimer p {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 45px;
    }
}