﻿
/* ========== HEADER ========== */
.consultancy-header {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e6b 100%);
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .consultancy-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
    }

    .consultancy-header::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 50%;
    }

.header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    color: #8ab4f8;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.consultancy-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

    .consultancy-header h1 span {
        color: #4fc3f7;
    }

.consultancy-header p {
    font-size: 18px;
    color: #b0c4de;
    max-width: 600px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8edf5;
    font-size: 14px;
}

    .stat-item i {
        font-size: 20px;
        color: #4fc3f7;
    }

    .stat-item strong {
        font-weight: 700;
        font-size: 16px;
        color: #fff;
    }

/* ========== MAIN CONTAINER ========== */
.consultancy-wrapper {
    max-width: 1200px;
    margin: -30px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.consultancy-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* ========== FORM CARD ========== */
.form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .form-card:hover {
        box-shadow: 0 30px 80px rgba(26, 35, 50, 0.12);
    }

.form-card-header {
    padding: 30px 35px 20px;
    border-bottom: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .form-card-header .icon-circle {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #e8f0fe, #d4e4ff);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #1a73e8;
    }

    .form-card-header h2 {
        font-size: 22px;
        font-weight: 700;
        color: #1a2332;
    }

    .form-card-header p {
        font-size: 14px;
        color: #5f6b7a;
        margin-top: 2px;
    }

.form-card-body {
    padding: 30px 35px 35px;
}

/* ========== FORM ELEMENTS ========== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row-full {
    grid-template-columns: 1fr;
}

.form-row-triple {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label {
        font-size: 13px;
        font-weight: 600;
        color: #2c3e50;
        display: flex;
        align-items: center;
        gap: 4px;
    }

        .form-group label .required {
            color: #dc3545;
            font-size: 16px;
        }

    .form-group .field-hint {
        font-size: 11px;
        color: #8a95a5;
        font-weight: 400;
    }

.form-control {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #fafbfc;
    color: #1a2332;
    width: 100%;
}

    .form-control:focus {
        outline: none;
        border-color: #1a73e8;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.08);
    }

    .form-control::placeholder {
        color: #aab3c5;
    }

    .form-control.error {
        border-color: #dc3545;
        background: #fff5f5;
    }

    .form-control.success {
        border-color: #28a745;
        background: #f0fff4;
    }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    max-height: 250px;
}

.error-message {
    font-size: 12px;
    color: #dc3545;
    margin-top: 4px;
    display: none;
    align-items: center;
    gap: 4px;
}

    .error-message.visible {
        display: flex;
    }

/* ========== FORM ACTIONS ========== */
.form-actions {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a73e8, #1557b0);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit i {
        font-size: 20px;
    }

    .btn-submit .btn-icon {
        background: rgba(255, 255, 255, 0.15);
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 14px;
    }

.form-footer-text {
    text-align: center;
    font-size: 13px;
    color: #6b7a8a;
}

    .form-footer-text i {
        color: #28a745;
    }

    .form-footer-text a {
        color: #1a73e8;
        text-decoration: none;
        font-weight: 600;
    }

/* ========== SIDEBAR - INFO CARD ========== */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.08);
    padding: 28px 30px;
    transition: transform 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-4px);
    }

    .info-card .card-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 16px;
    }

        .info-card .card-icon.blue {
            background: linear-gradient(135deg, #e8f0fe, #d4e4ff);
            color: #1a73e8;
        }

        .info-card .card-icon.green {
            background: linear-gradient(135deg, #e6f7ed, #c8f0dc);
            color: #28a745;
        }

        .info-card .card-icon.purple {
            background: linear-gradient(135deg, #f0ebff, #e0d4ff);
            color: #7c3aed;
        }

        .info-card .card-icon.orange {
            background: linear-gradient(135deg, #fff3e6, #ffe4cc);
            color: #e67e22;
        }

    .info-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1a2332;
        margin-bottom: 6px;
    }

    .info-card p {
        font-size: 14px;
        color: #5f6b7a;
        line-height: 1.6;
    }

    .info-card .feature-list {
        list-style: none;
        padding: 0;
        margin-top: 12px;
    }

        .info-card .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 14px;
            color: #2c3e50;
            border-bottom: 1px solid #f0f2f5;
        }

            .info-card .feature-list li:last-child {
                border-bottom: none;
            }

            .info-card .feature-list li i {
                color: #28a745;
                font-size: 16px;
                width: 20px;
            }

    .info-card .price-tag {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin: 12px 0 4px;
    }

        .info-card .price-tag .amount {
            font-size: 32px;
            font-weight: 800;
            color: #1a2332;
        }

        .info-card .price-tag .currency {
            font-size: 18px;
            font-weight: 600;
            color: #5f6b7a;
        }

        .info-card .price-tag .period {
            font-size: 14px;
            color: #8a95a5;
            margin-left: 4px;
        }

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fff4;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #28a745;
    margin-top: 12px;
}

    .guarantee-badge i {
        font-size: 18px;
    }

/* ========== TRUST BADGES ========== */
.trust-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eef2f7;
    text-align: center;
}

    .trust-section p {
        font-size: 13px;
        color: #8a95a5;
        margin-bottom: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

    .trust-icons .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #5f6b7a;
    }

        .trust-icons .trust-item i {
            font-size: 20px;
            color: #1a73e8;
        }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .consultancy-grid {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .consultancy-header {
        padding: 40px 16px 30px;
    }

        .consultancy-header h1 {
            font-size: 28px;
        }

        .consultancy-header p {
            font-size: 15px;
        }

    .header-stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .consultancy-wrapper {
        margin-top: -20px;
        padding: 0 12px;
    }

    .form-card-header {
        padding: 20px 20px 16px;
        flex-wrap: wrap;
    }

    .form-card-body {
        padding: 20px 20px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row-triple {
        grid-template-columns: 1fr;
    }

    .info-sidebar {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px 24px;
    }

    .btn-submit {
        padding: 14px 24px;
        font-size: 15px;
    }

    .trust-icons {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .consultancy-header h1 {
        font-size: 24px;
    }

    .form-card-header h2 {
        font-size: 18px;
    }

    .form-control {
        padding: 10px 14px;
        font-size: 13px;
    }

    .btn-submit {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f4f8;
}

::-webkit-scrollbar-thumb {
    background: #c1c9d6;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #a8b2c4;
    }


/* ===== SELECT2 MODERN CLEAN THEME (IMPORTANT OVERRIDE) ===== */
.select2-container--default .select2-selection--single {
    height: 48px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
    transition: all .2s ease !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
}

    .select2-container--default .select2-selection--single:hover {
        border-color: #2563eb !important;
        box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
    }

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.18) !important;
}

/* selected text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #111827 !important;
    line-height: 28px !important;
    padding-left: 0 !important;
}

/* placeholder */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #9ca3af !important;
    font-family: 'Poppins', sans-serif;
    font-size: 15px !important;
}

/* arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px !important;
    right: 10px !important;
}

/* dropdown container */
.select2-dropdown {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
    overflow: hidden !important;
}

/* search box */
.select2-search--dropdown .select2-search__field {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 5px 10px !important;
    outline: none !important;
}

/* options */
.select2-container--default .select2-results__option {
    padding: 10px 14px !important;
    font-size: 14px !important;
    transition: all .15s ease !important;
}

/* hover / active */
.select2-container--default .select2-results__option--highlighted {
    background: #2563eb !important;
    color: #fff !important;
}

/* selected option */
.select2-container--default .select2-results__option[aria-selected=true] {
    background: #eff6ff !important;
    color: #1d4ed8 !important;
}

/* disabled */
.select2-container--disabled .select2-selection--single {
    background: #f3f4f6 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}
