/* Partner With Us / Contact Page Styles */

.partner-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    /* Modern corporate building / meeting */
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.partner-hero .section-label {
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
}

.partner-hero h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 20px;
}

.partner-hero-desc {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.partner-hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.partner-content {
    padding: 100px 0;
    background: var(--cream);
}

.partner-intro-text {
    margin-bottom: 2rem;
    color: var(--gray);
}

.partner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: start;
}

/* Form Styling */
.enquiry-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.enquiry-card .form-group {
    margin-bottom: 25px;
}

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

.enquiry-card label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.enquiry-card input,
.enquiry-card select,
.enquiry-card textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--navy);
    transition: all 0.3s ease;
}

.enquiry-card input:focus,
.enquiry-card select:focus,
.enquiry-card textarea:focus {
    background: var(--white);
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.enquiry-card textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #b89640;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(184, 150, 64, 0.2);
}

.form-success-msg {
    font-size: .8rem;
    color: var(--gold);
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}

/* Sidebar Info Styling */
.info-sidebar {
    display: grid;
    gap: 30px;
}

.info-card {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.info-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--gold);
}

.info-partner-tag {
    color: var(--gold);
    font-size: .78rem;
}

/* Steps Styling */
.engagement-steps {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.engagement-heading {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.step-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.step-num {
    background: var(--navy);
    color: var(--gold);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.promise-box {
    background: var(--gold);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.promise-box p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy);
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-hero h1 {
        font-size: 2.5rem;
    }

    .enquiry-card {
        padding: 30px;
    }
}