/* Custom Project Page Styles */

.custom-project-main {
    padding-top: 0;
    min-height: 100vh;
}

.custom-project-hero {

    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    text-align: left;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.custom-project-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.custom-project-title .red-text {
    color: #8B5CF6;
}

.custom-project-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-form-section {
    max-width: 1600px;
    margin: 60px auto;
    padding: 40px;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
}

.form-right {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid #8B5CF6;
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 700px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(218, 7, 47, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0a1e;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #8B5CF6;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 137, 249, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Thank You Page Styles */
.thank-you-section {
    max-width: 700px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.thank-you-content {
    background: rgba(20, 20, 40, 0.6);
    border: 1px solid rgba(218, 7, 47, 0.3);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #00b4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 30px;
    font-weight: 700;
}

.thank-you-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #00b4ff);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 7, 47, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .custom-project-title {
        font-size: 2.5rem;
    }

    .custom-project-subtitle {
        font-size: 1.2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .custom-project-hero {
        padding: 40px 20px 30px;
    }

    .hero-content {
        gap: 30px;
    }

    .custom-project-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .custom-project-subtitle {
        font-size: 1rem;
    }

    .contact-form-section {
        margin: 40px auto;
    }

    .thank-you-content {
        padding: 40px 20px;
    }

    .thank-you-content h2 {
        font-size: 1.5rem;
    }

    .thank-you-content p {
        font-size: 1rem;
    }
}
