/* Vendor Advisory Services Page Styles */

/* Hero Section */
.vendor-advisory-page .hero-section {
    background: linear-gradient(135deg, #00223C 0%, #007BC2 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.vendor-advisory-page .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.vendor-advisory-page .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.vendor-advisory-page .hero-section .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.vendor-advisory-page .hero-section .container {
    position: relative;
    z-index: 1;
}

.vendor-advisory-page .hero-section .btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.vendor-advisory-page .hero-section .btn-primary:hover {
    background-color: #ff5722;
    border-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Main Content Section */
.vendor-advisory-page .main-content h2 {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
}

.vendor-advisory-page .benefits-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.vendor-advisory-page .benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.vendor-advisory-page .benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Services Section */
.vendor-advisory-page .services-section {
    background-color: #f8f9fa;
}

.vendor-advisory-page .services-section h2 {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 2.5rem;
}

.vendor-advisory-page .service-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-advisory-page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.vendor-advisory-page .service-card h4 {
    color: #1e3a5f;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vendor-advisory-page .service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
}

.vendor-advisory-page .service-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.vendor-advisory-page .service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

.vendor-advisory-page .service-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #ff6b35;
    font-weight: bold;
}

.vendor-advisory-page .service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vendor-advisory-page .service-icon img {
    max-width: 80px;
    max-height: 80px;
}

/* Advisory Boards Section */
.vendor-advisory-page .advisory-boards-section {
    background: white;
}

.vendor-advisory-page .advisory-boards-section h2 {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 2rem;
}

.vendor-advisory-page .advisory-list {
    list-style: none;
    padding-left: 0;
}

.vendor-advisory-page .advisory-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.vendor-advisory-page .advisory-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #ff6b35;
    font-size: 1.5rem;
    line-height: 1.2;
}

.vendor-advisory-page .btn-outline-primary {
    color: #1e3a5f;
    border-color: #1e3a5f;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vendor-advisory-page .btn-outline-primary:hover {
    background-color: #1e3a5f;
    border-color: #1e3a5f;
    color: white;
}

/* Contact Section */
.vendor-advisory-page .contact-section {
    background-color: #f8f9fa;
}

.vendor-advisory-page .contact-section h2 {
    color: #1e3a5f;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.vendor-advisory-page .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.vendor-advisory-page .form-control,
.vendor-advisory-page .form-select {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px 12px;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.vendor-advisory-page .form-control:focus,
.vendor-advisory-page .form-select:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.25);
}

.vendor-advisory-page textarea.form-control {
    resize: vertical;
}

.vendor-advisory-page .contact-section .btn-primary {
    background-color: #ff6b35;
    border-color: #ff6b35;
    padding: 12px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.vendor-advisory-page .contact-section .btn-primary:hover {
    background-color: #ff5722;
    border-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Images */
.vendor-advisory-page img.rounded {
    border-radius: 10px !important;
}

.vendor-advisory-page img.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .vendor-advisory-page .hero-section h1 {
        font-size: 2rem;
    }
    
    .vendor-advisory-page .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .vendor-advisory-page .main-content h2 {
        font-size: 1.5rem;
    }
    
    .vendor-advisory-page .service-card {
        margin-bottom: 20px;
    }
    
    .vendor-advisory-page .advisory-list li {
        padding-left: 25px;
    }
    
    .vendor-advisory-page .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .vendor-advisory-page .hero-section {
        min-height: 300px;
    }
    
    .vendor-advisory-page .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .vendor-advisory-page .btn-primary,
    .vendor-advisory-page .btn-outline-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }
}