/* Partner Page Redesign CSS */
.hsj-partner-page {
    background: #fdfdfd;
}

/* Hero Section */
.hsj-modern-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 75, 137, 0.7) 0%, rgba(26, 75, 137, 0.4) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-title-v2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s;
    height: 100%;
}

.hero-feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.hero-feature-card .feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.hero-feature-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Steps Section */
.hsj-step-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.hsj-step-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #1A4B89;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

/* Form Styles */
.hsj-partner-form-card {
    background: #fff;
    border-radius: 20px;
}

.hsj-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.hsj-input,
.hsj-select,
.hsj-textarea {
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    transition: border-color 0.3s;
    background: #f9f9f9 !important;
}

.hsj-input:focus,
.hsj-select:focus,
.hsj-textarea:focus {
    border-color: #1A4B89 !important;
    background: #fff !important;
    box-shadow: none !important;
}

.hsj-btn-submit {
    background: #1A4B89;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.hsj-btn-submit:hover {
    background: #153a6b;
    color: #fff;
    transform: translateY(-2px);
}

/* Bottom CTA */
.hsj-cta-box {
    background: linear-gradient(90deg, #1A4B89 0%, #2a69b7 100%);
    color: #fff;
}

/* Breadcrumb */
.hsj-breadcrumb-minimal a {
    color: #ccc;
    text-decoration: none;
}

.hsj-breadcrumb-minimal span {
    color: #fff;
}

@media (max-width: 768px) {
    .hero-title-v2 {
        font-size: 2.2rem;
    }
}