.contact-page {
    display: block;
}

.contact-hero-section {
    background: url(../assets/pages/contact/title.jpg) no-repeat top center;
    padding-bottom: 0;
    background-size: cover;
    min-height: 700px;
    flex-direction: column;
    justify-content: space-between;
}

.contact-hero-section p {
    max-width: 700px;
}

/* Contact Social Media Links */
.contact-link-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: auto;
    padding: 12px 0;
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
}


.contact-social-link:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.contact-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(90deg, #79EFB3 0%, #064DFA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-social-icon i {
    font-size: 27px;
    color: #FFFFFF;
}

.contact-social-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-social-text h3 {
    font-family: DM Sans, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4em;
    color: #000000;
    margin: 0;
}

.contact-social-text p {
    font-family: DM Sans, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.294em;
    color: #333940;
    opacity: 0.7;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: url(../assets/pages/contact/section.jpg) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

.contact-form-wrapper {
    flex: 0 0 680px;
    margin-left: auto;
    animation: slideInRight 1s ease-out;
}

.contact-form {
    background: linear-gradient(180deg, rgba(192, 255, 235, 0.5) 0%, rgba(41, 112, 255, 0.5) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 5px 5px 20px 0px rgb(0 0 0 / 30%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-section {
    margin-bottom: 30px;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-section-header i {
    font-size: 21px;
    color: #79EFB3;
}

.form-section-header h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2em;
    letter-spacing: 4.17%;
    color: #79EFB3;
    margin: 0;
}

.form-section-header-blue i,
.form-section-header-blue h3 {
    color: #2970FF;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row-full {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.form-group-full {
    width: 100%;
    margin-bottom: 10px;
}

.form-group label {
    font-family: DM Sans, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    color: #0D0D12;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: DM Sans, sans-serif;
    font-size: 16px;
    line-height: 1.19em;
    color: #666D80;
    background: #FFFFFF;
    border: 1px solid #C0FFEB;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #79EFB3;
}

.form-group textarea {
    min-height: 135px;
    resize: vertical;
}

.input-wrapper {
    position: relative;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
}

.select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666D80;
    pointer-events: none;
}

.form-hint {
    font-family: DM Sans, sans-serif;
    font-size: 12px;
    line-height: 1.33em;
    color: #333940;
}

/* Submit Section */
.form-submit-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recaptcha-wrapper {
    width: 304px;
    height: 78px;
}

.recaptcha-placeholder {
    background: #F9F9F9;
    border: 1px solid #D3D3D3;
    border-radius: 3px;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.08);
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    height: 76px;
}

.recaptcha-checkbox {
    width: 28px;
    height: 28px;
    position: relative;
}

.recaptcha-checkbox input[type="checkbox"] {
    width: 28px;
    height: 28px;
    margin: 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
    opacity: 0;
}

.recaptcha-checkbox label {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border: 2px solid #444746;
    border-radius: 2px;
    background: #FFFFFF;
    pointer-events: none;
}

.recaptcha-checkbox input[type="checkbox"]:checked+label::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4285F4;
    font-size: 20px;
    font-weight: bold;
}

.recaptcha-text {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.21em;
    color: #000000;
}

.recaptcha-logo {
    position: absolute;
    right: 13px;
    top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.recaptcha-logo img {
    width: 32px;
    height: 32px;
}

.recaptcha-logo small {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    color: #555555;
    line-height: 1;
}

.recaptcha-links {
    font-size: 8px;
    color: #555555;
    line-height: 1;
}

.recaptcha-links a {
    color: #555555;
    text-decoration: none;
}

.recaptcha-links a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    height: 51px;
    background: linear-gradient(90deg, #79EFB3 0%, #064DFA 100%);
    border: none;
    border-radius: 5px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08), 0px 4px 6px 0px rgba(50, 50, 93, 0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15), 0px 6px 12px 0px rgba(50, 50, 93, 0.18);
}

.btn-submit i {
    font-size: 18px;
    color: #79EFB3;
}

.btn-submit span {
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
}

.form-newsletter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-newsletter input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #79EFB3;
}

.form-newsletter label {
    font-family: DM Sans, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4em;
    color: #FFFFFF;
    cursor: pointer;
}

/* Security Notice */
.form-security-notice {
    margin-top: 40px;
}

.security-box {
    background: rgba(41, 112, 255, 0.5);
    border: 1px solid rgba(41, 112, 255, 0.4);
    border-radius: 8px;
    padding: 24px 40px;
    margin-bottom: 20px;
}

.security-box p {
    font-family: DM Sans, sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.41em;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.form-disclaimer {
    font-family: DM Sans, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.43em;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

/* Mascot */
.contact-mascot {
    position: absolute;
    left: 0;
    top: 60px;
    width: 696px;
    height: 984px;
    pointer-events: none;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.contact-mascot img {
    width: 100%;
    height: auto;
}

.contact-link-wrapper {
    width: 100%;
    background: #ffffff80;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(6px);
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .contact-mascot {
        width: 500px;
        height: auto;
    }
}

@media (max-width: 1200px) {
    .contact-link-button {
        gap: 30px;
    }

    .contact-form-wrapper {
        flex: 0 0 600px;
    }

    .contact-mascot {
        width: 400px;
    }
}

@media (max-width: 992px) {
    .contact-link-button {
        gap: 20px;
        justify-content: center;
    }

    .contact-form-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-wrapper {
        flex: 1 1 100%;
        max-width: 680px;
        margin: 0;
        animation: slideInRight 0.8s ease-out;
    }

    .contact-mascot {
        position: relative;
        width: 400px;
        margin: 0 auto;
        animation: slideInLeft 0.8s ease-out 0.3s both;
    }
}

@media (max-width: 768px) {
    .contact-link-button {
        gap: 15px;
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-social-link {
        justify-content: flex-start;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .recaptcha-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .contact-mascot {
        width: 300px;
    }

    /* Reduce motion for mobile if preferred */
    @media (prefers-reduced-motion: reduce) {

        .contact-form-wrapper,
        .contact-mascot {
            animation: none;
        }
    }
}

@media (max-width: 480px) {
    .form-section-header h3 {
        font-size: 20px;
    }

    .security-box {
        padding: 20px;
    }
}