﻿
.page-wrapper {
    position: relative;
    min-height: 100vh;
}



/* Hero Section with Video */
.hero-section {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 84, 0.75) 0%, rgba(45, 90, 135, 0.65) 50%, rgba(100, 140, 180, 0.55) 100%);
}

/*.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 0 50px;
}*/
.hero-content {
    position: absolute;
    bottom: 40px; /* arrow wali jagah */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}


.hero-inner {
    justify-content: center;
}

.hero-text {
    text-align: center;
}


.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 16px;
}

.steps-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}


/* Form Main Section */
.form-main {
    position: relative;
    z-index: 1;
    padding: 30px 0 60px;
    margin-top: -20px;
}

/* Form Card */
.form-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 12px;
    padding: 28px 32px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.collaboration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Section */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 2px;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: end;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-size: 12px;
    font-weight: 500;
    color: #1a1a2e;
}

.required {
    color: #dc2626;
    font-weight: 400;
}

/* Form Inputs */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    transition: all 0.2s ease;
}

    .form-input:focus,
    .form-textarea:focus,
    .form-select:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: #9ca3af;
        font-size: 13px;
    }

.form-textarea {
    resize: vertical;
    min-height: 70px;
    line-height: 1.5;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 36px;
    color: #9ca3af;
}

    .form-select:valid:not([value=""]) {
        color: #1a1a2e;
    }

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 1.5px solid #3b82f6;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #ffffff;
}

.checkbox-input:checked + .checkbox-custom {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checkbox-custom svg {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-input:checked + .checkbox-custom svg {
    opacity: 1;
}

.checkbox-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.privacy-link {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
}

    .privacy-link:hover {
        text-decoration: underline;
    }

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 36px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.3);
}

    .submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(30, 58, 95, 0.4);
    }

.btn-arrow {
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 12px;
}

.footer-text {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
}

.footer-contact {
    font-size: 12px;
    color: #64748b;
}

.contact-link {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
}

    .contact-link:hover {
        text-decoration: underline;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        gap: 20px;
    }


    .hero-title {
        font-size: 26px;
    }

        .hero-title br {
            display: none;
        }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 0 40px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-description br {
        display: none;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 16px;
    }

    .form-main {
        padding: 20px 0 50px;
    }
}

.error-message {
    color: red;
    font-size: 13px;
}