/* ========================================
   Feature Listing Page Styles
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    padding: 200px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.header-content h1 {
    font-family: var(--font-secondary);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 22px;
    opacity: 0.95;
}

/* ========================================
   Feature Listing Section
   ======================================== */

.feature-listing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

/* ========================================
   Information Panel
   ======================================== */

.info-panel {
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--dark-navy);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-card strong {
    color: var(--dark-navy);
    font-weight: 700;
}

/* Tips Box */
.tips-box {
    background: linear-gradient(135deg, rgba(43, 122, 158, 0.1), rgba(30, 58, 95, 0.1));
    border-left: 4px solid var(--gold);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.tips-box h4 {
    color: var(--dark-navy);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-box h4 i {
    color: var(--gold);
}

.tips-box ul {
    list-style: none;
    padding: 0;
}

.tips-box ul li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tips-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Contact Box */
.contact-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-box h4 {
    color: var(--dark-navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-box p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-email:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   Form Panel
   ======================================== */

.form-panel {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: var(--font-secondary);
    font-size: 36px;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--bg-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gold);
    border-radius: 2px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group label {
    display: block;
    color: var(--dark-navy);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.required {
    color: #e74c3c;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(43, 122, 158, 0.1);
}

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

.form-help {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 6px;
    font-style: italic;
}

/* Checkbox Groups */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Listing Section Highlight */
.listing-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.form-actions .btn {
    min-width: 250px;
}

/* Form Message */
.form-message {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-panel {
        position: static;
    }

    .form-panel {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 160px 0 60px;
    }

    .header-content h1 {
        font-size: 36px;
    }

    .header-content p {
        font-size: 18px;
    }

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

    .form-header h2 {
        font-size: 28px;
    }

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

    .info-card {
        padding: 25px;
    }

    .form-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 140px 0 50px;
    }

    .header-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .tips-box,
    .contact-box {
        padding: 20px;
    }
}