/* Contact Page Unique Layout */
.contact-container {
    padding-top: 80px;
    /* Nav height */
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.contact-left {
    flex: 1;
    background: #09101A;
    color: white;
    padding: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(3, 199, 90, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.contact-details {
    margin-top: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
}

.contact-right {
    flex: 1.2;
    background: #fff;
    padding: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 600px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    background: #F8F9FA;
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(3, 199, 90, 0.1);
}

.contact-page-footer {
    position: relative !important;
    z-index: 10;
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        padding-top: 70px;
    }

    .contact-left,
    .contact-right {
        padding: 3rem 1.5rem;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }
}

/* Required Field Indicator */
.required-mark {
    color: #e53935;
    margin-left: 4px;
    font-size: 0.9em;
}

/* Privacy Policy Box */
.privacy-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.privacy-content {
    height: 120px;
    overflow-y: auto;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-right: 1rem;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #ced4da #f8f9fa;
}

.privacy-content::-webkit-scrollbar {
    width: 6px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background-color: #ced4da;
    border-radius: 3px;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
}

.privacy-check input[type="checkbox"] {
    accent-color: var(--accent-green);
    width: 18px;
    height: 18px;
}

/* Select Box */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
}

/* Responsive Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .scroll-reveal.from-left,
    .scroll-reveal.from-right {
        transform: translateY(18px);
    }
}

@media (max-width: 600px) {
    .contact-container {
        padding-top: 64px;
    }

    .contact-left,
    .contact-right {
        padding: 2rem 1.25rem;
    }

    .contact-left::before {
        width: 420px;
        height: 420px;
        right: -40%;
    }

    .contact-header h1 {
        font-size: 2.1rem;
    }

    .contact-header p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        font-size: 1rem;
    }

    .contact-item i {
        width: 20px;
        height: 20px;
    }

    .contact-details {
        margin-top: 2rem;
    }
}

/* Scroll Reveal Directions Override */
/* Scroll Reveal Directions Override */
.scroll-reveal {
    opacity: 0;
    transition: all 1s ease;
}

.scroll-reveal.from-left {
    transform: translateX(-50px);
}

.scroll-reveal.from-right {
    transform: translateX(50px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 1024px) {

    .scroll-reveal.from-left,
    .scroll-reveal.from-right {
        transform: translateY(50px);
    }

    .scroll-reveal.active {
        transform: translateY(0);
    }
}

/* Cloudflare Turnstile */
.cf-turnstile {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}