/* ==========================================================================
   PAGE: دعوة للشراكة
   FILENAME: partnership.css
   DESCRIPTION: Page-specific styles only — NOT found in global CSS
   CORPORATE, REFINED, EXECUTIVE-LEVEL TONE
   ========================================================================== */

/* -----------------------------------------
   1. HERO ADAPTATION (matches internal page style)
   ----------------------------------------- */
.partnership-hero {
    height: 40vh;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partnership-hero .hero-bg img {
    object-position: center 30%;
}

.partnership-hero .hero-content {
    margin-top: 60px;
}

.partnership-hero .hero-title-ar {
    font-size: 42px;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .partnership-hero {
        height: 35vh;
        min-height: 350px;
    }
    .partnership-hero .hero-title-ar {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .partnership-hero {
        min-height: 300px;
    }
    .partnership-hero .hero-title-ar {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .partnership-hero .hero-title-ar {
        font-size: 26px;
    }
}

/* -----------------------------------------
   2. MAIN CONTENT - STRATEGIC, SPACIOUS
   ----------------------------------------- */
.partnership-main-section {
    background-color: var(--white);
    padding: 100px 0 80px;
    position: relative;
}

/* Intro wrapper - centered, elegant */
.partnership-intro-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}

.partnership-badge {
    margin-bottom: 25px;
}

.partnership-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(212, 175, 55, 0.06);
    padding: 8px 20px;
    border-radius: 40px;
    display: inline-block;
}

.partnership-content-block {
    max-width: 780px;
    margin: 0 auto 30px;
}

.partnership-primary-text {
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

/* Elegant separator */
.partnership-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 20px;
}

.separator-diamond {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    transform: rotate(45deg);
    opacity: 0.7;
}

.separator-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* -----------------------------------------
   3. STRATEGIC PILLARS - MINIMAL, CORPORATE
   ----------------------------------------- */
.partnership-pillars {
    max-width: 1100px;
    margin: 60px auto 50px;
    padding: 0 15px;
}

.pillar-card {
    background: var(--white);
    padding: 40px 25px 35px;
    text-align: center;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(10, 36, 99, 0.03);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(10, 36, 99, 0.04);
    border-color: rgba(212, 175, 55, 0.15);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.02) 0%, rgba(10, 36, 99, 0.06) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 36, 99, 0.03);
}

.pillar-card:hover .pillar-icon {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

.pillar-title {
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.pillar-text {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 0;
    padding: 0 5px;
}

/* -----------------------------------------
   4. ABSTRACT VISUAL - NETWORK/CONNECTION MOTIF
   ----------------------------------------- */
.partnership-abstract-visual {
    max-width: 700px;
    margin: 70px auto 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(10, 36, 99, 0.04);
    border-bottom: 1px solid rgba(10, 36, 99, 0.04);
}

.connection-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.connection-lines .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.connection-lines .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--primary-dark), var(--accent-gold), transparent);
    opacity: 0.3;
}

.connection-labels {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.connection-labels span {
    position: relative;
}

.connection-labels span::before {
    content: '●';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--accent-gold);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .connection-labels {
        gap: 20px;
        font-size: 10px;
        flex-wrap: wrap;
    }
    .connection-labels span {
        margin: 10px 0;
    }
    .connection-lines .line {
        width: 30px;
    }
}

/* -----------------------------------------
   5. CONTACT BLOCK - CLEAN, MINIMAL, EXECUTIVE
   ----------------------------------------- */
.partnership-contact-block {
    max-width: 750px;
    margin: 80px auto 40px;
    position: relative;
}

.contact-block-inner {
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(10, 36, 99, 0.03);
    border: 1px solid rgba(10, 36, 99, 0.04);
}

.contact-block-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-block-decoration.bottom {
    top: auto;
    bottom: 0;
}

.decoration-bar {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--primary-dark), var(--accent-gold), transparent);
    opacity: 0.3;
}

.contact-block-content {
    position: relative;
    z-index: 2;
}

.contact-block-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 25px;
}

.contact-email-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(10, 36, 99, 0.06);
    border-top: 1px solid rgba(10, 36, 99, 0.06);
}

.email-icon {
    font-size: 24px;
    color: var(--accent-gold);
    opacity: 0.8;
}

.contact-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    word-break: break-all;
}

.contact-email:hover {
    color: var(--accent-gold);
}

/* Large elegant CTA button */
.btn-partnership-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid rgba(10, 36, 99, 0.1);
    padding: 18px 45px;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
}

.btn-partnership-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 36, 99, 0.1);
}

.btn-partnership-cta:hover .cta-arrow {
    transform: translateX(-5px);
}

.cta-text {
    font-size: 20px;
}

.cta-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Partnership note - subtle */
.partnership-note {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: center;
}

.note-text {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: var(--charcoal);
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 0;
}

/* -----------------------------------------
   6. RESPONSIVE ADJUSTMENTS
   ----------------------------------------- */
@media (max-width: 992px) {
    .partnership-primary-text {
        font-size: 26px;
    }
    
    .contact-email {
        font-size: 22px;
    }
    
    .btn-partnership-cta {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .partnership-main-section {
        padding: 70px 0 60px;
    }
    
    .partnership-primary-text {
        font-size: 24px;
        line-height: 1.6;
    }
    
    .partnership-badge {
        margin-bottom: 20px;
    }
    
    .partnership-label {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .partnership-separator {
        margin: 30px 0 15px;
    }
    
    .separator-line {
        width: 50px;
    }
    
    .pillar-card {
        padding: 35px 20px 30px;
    }
    
    .contact-block-inner {
        padding: 50px 30px;
    }
    
    .contact-email {
        font-size: 20px;
    }
    
    .btn-partnership-cta {
        padding: 15px 35px;
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .partnership-primary-text {
        font-size: 22px;
    }
    
    .contact-email-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-email {
        font-size: 18px;
    }
    
    .btn-partnership-cta {
        width: 100%;
        padding: 14px 25px;
        font-size: 16px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .connection-labels {
        gap: 15px;
        font-size: 9px;
    }
}

/* -----------------------------------------
   7. ENHANCED READABILITY & WHITE SPACE
   ----------------------------------------- */
.container {
    max-width: 1200px;
}

.partnership-main-section .container > *:not(:last-child) {
    margin-bottom: 20px;
}

/* Active nav state */
.nav-link.active {
    color: var(--accent-gold) !important;
    font-weight: 700;
}

/* Subtle background refinement */
.partnership-main-section {
    background: linear-gradient(180deg, #ffffff 0%, #fefefe 100%);
}

/* Ensure text isn't too wide on large screens */
.partnership-content-block,
.partnership-contact-block {
    width: 100%;
}
/* -----------------------------------------
   CONTACT BLOCK - REDESIGNED
   أكثر أناقة، نقاءً، وروح تنفيذية
   ----------------------------------------- */
.partnership-contact-block {
    max-width: 700px;
    margin: 80px auto 40px;
    position: relative;
}

/* Divider with handshake icon - very subtle */
.contact-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.divider-line {
    flex: 0 0 80px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        rgba(10, 36, 99, 0.2), 
        rgba(212, 175, 55, 0.3), 
        transparent
    );
}

.divider-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.divider-icon i {
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.1));
}

.partnership-contact-block:hover .divider-icon {
    opacity: 1;
    transform: scale(1.05);
}

/* Content block - pure, minimal */
.contact-block-content {
    text-align: center;
    padding: 20px 0;
}

.contact-block-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 30px;
    opacity: 0.55;
}

/* Email presentation - clean typography */
.contact-email-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(10, 36, 99, 0.06);
    border-top: 1px solid rgba(10, 36, 99, 0.06);
    background: transparent;
}

.email-prefix {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--accent-gold);
    opacity: 0.7;
    transform: translateY(-1px);
}

.contact-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 450;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
    padding: 12px 0;
    word-break: break-all;
    
    
}

.contact-email:hover {
    color: var(--accent-gold);
   
}

/* Refined CTA - elegant and understated */
.btn-contact-elegant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid rgba(10, 36, 99, 0.15);
    padding: 16px 48px;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    backdrop-filter: blur(4px);
}

.btn-contact-elegant:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 36, 99, 0.08);
}

.btn-contact-elegant:hover .btn-arrow {
    transform: translateX(-6px);
}

.btn-text {
    font-size: 18px;
    font-weight: 600;
}

.btn-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .divider-line {
        flex: 0 0 50px;
    }
    
    .contact-email {
        font-size: 20px;
    }
    
    .btn-contact-elegant {
        padding: 15px 36px;
        font-size: 17px;
        width: 100%;
        max-width: 380px;
    }
}

@media (max-width: 576px) {
    .contact-section-divider {
        gap: 12px;
    }
    
    .divider-line {
        flex: 0 0 30px;
    }
    
    .contact-email-container {
        flex-direction: column;
        gap: 8px;
        border: none;
        padding: 15px 0;
    }
    
    .email-prefix {
        display: none;
    }
    
    .contact-email {
        font-size: 18px;
        
        padding-bottom: 8px;
    }
    
    .btn-contact-elegant {
        padding: 14px 28px;
        font-size: 16px;
    }
}