/**
 * WASLA LEGAL PAGES STYLES
 * Beautiful styling for Privacy Policy and Terms of Service pages
 * Maintains consistent design with other Wasla pages
 * 
 * @package Wasla
 * @since 1.0.0
 */

/* ===== MAIN LEGAL PAGE CONTAINERS ===== */
.wasla-privacy-policy-page,
.wasla-terms-page,
.wasla-cookie-policy-page,
.wasla-about-page {
    direction: rtl;
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    background: #ffffff;
    min-height: 100vh;
}

/* Force full-width for About Us page - Override Astra */
.wasla-about-page .ast-container,
.wasla-about-page .site-content,
.wasla-about-page #content,
.wasla-about-page .ast-page-builder-template {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== LEGAL HERO SECTION ===== */
.legal-hero {
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
    color: white;
    padding: 140px 0 60px;
    margin: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 244, 183, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Breadcrumb Navigation */
.page-breadcrumb {
    margin-bottom: 2rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.page-breadcrumb a {
    color: rgba(255, 244, 183, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: #FFF4B7;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.75rem;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
}

/* Legal Title */
.legal-title {
    font-size: 3.5rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    text-align: center;
}

.legal-subtitle {
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Legal Meta */
.legal-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Tajawal', sans-serif;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 244, 183, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.last-updated i {
    color: #FFF4B7;
}

/* ===== LEGAL CONTENT SECTION ===== */
.legal-content {
    padding: 80px 0;
    background: #ffffff;
    width: 100%;
    margin: 0;
    max-width: 100%;
}

/* Ensure About Us page content is full-width */
.wasla-about-page .legal-content {
    max-width: 100% !important;
    width: 100% !important;
}

.legal-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
    max-width: 100%;
    margin: 0;
    padding: 0 30px;
    width: 100%;
}

/* Main Legal Content */
.legal-main {
    width: 100%;
    min-width: 0;
}

/* ===== POLICY CONTENT ===== */
.privacy-policy-content,
.terms-content,
.cookie-policy-content {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 2.2rem;
    color: #000B58;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #FFF4B7;
    position: relative;
}

.policy-section h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #006A67;
}

.policy-section h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.6rem;
    color: #006A67;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.policy-section p {
    margin: 0 0 1.25rem 0;
    text-align: justify;
}

.policy-section ul,
.policy-section ol {
    margin: 0 0 1.5rem 2rem;
    padding: 0;
}

.policy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.policy-section li strong {
    color: #000B58;
    font-family: 'Cairo', sans-serif;
}

.policy-section a {
    color: #006A67;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #000B58;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-grid .contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-info-grid .contact-item:hover {
    border-color: #006A67;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 106, 103, 0.15);
}

.contact-info-grid .contact-item i {
    font-size: 2rem;
    color: #006A67;
    margin-bottom: 1rem;
    display: block;
}

.contact-details strong {
    font-family: 'Cairo', sans-serif;
    color: #000B58;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: #666;
    font-family: 'Tajawal', sans-serif;
}

.contact-details a {
    color: #006A67;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #000B58;
    text-decoration: underline;
}

/* Acceptance Notice (for Terms page) */
.acceptance-notice {
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
    color: white;
    padding: 2.5rem;
}

.notice-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.notice-box i {
    font-size: 3rem;
    color: #FFF4B7;
    flex-shrink: 0;
}

.notice-content h3 {
    color: white !important;
    margin-top: 0 !important;
    font-size: 1.8rem !important;
}

.notice-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* ===== LEGAL SIDEBAR ===== */
.legal-sidebar {
    width: 100%;
    max-width: 350px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 11, 88, 0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #000B58;
    font-family: 'Cairo', sans-serif;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #FFF4B7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Legal Links Widget */
.legal-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-links-list li {
    margin-bottom: 0.75rem;
}

.legal-links-list li:last-child {
    margin-bottom: 0;
}

.legal-links-list a {
    color: #666;
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #e9ecef;
}

.legal-links-list li.active a {
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
    color: white;
    border-color: #006A67;
}

.legal-links-list a:hover {
    background: #006A67;
    color: white;
    border-color: #006A67;
    transform: translateX(5px);
}

.legal-links-list li.active a:hover {
    transform: translateX(0);
}

/* Support Widget */
.support-widget p {
    color: #666;
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 106, 103, 0.3);
    color: white;
    text-decoration: none;
}

/* Summary Widget */
.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    margin-bottom: 1rem;
    color: #666;
    font-family: 'Tajawal', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.summary-list li i {
    color: #006A67;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.summary-list li:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 40px;
    }
    
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .legal-sidebar {
        position: relative;
        top: auto;
        max-width: 100%;
        order: -1;
    }
    
    .policy-section {
        padding: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .policy-section h3 {
        font-size: 1.4rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-box {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-box i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .last-updated {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .legal-sidebar {
        display: none;
    }
    
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .policy-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .legal-title {
        font-size: 24pt;
        color: black;
    }
    
    .policy-section h2 {
        font-size: 18pt;
        color: black;
    }
    
    .policy-section h3 {
        font-size: 14pt;
        color: black;
    }
    
    .privacy-policy-content,
    .terms-content,
    .cookie-policy-content {
        font-size: 11pt;
        line-height: 1.6;
    }
}

/* ===== COOKIE POLICY SPECIFIC STYLES ===== */
.cookie-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    border-color: #006A67;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 106, 103, 0.15);
}

.purpose-item i {
    font-size: 3rem;
    color: #006A67;
    margin-bottom: 1rem;
    display: block;
}

.purpose-item h3 {
    font-size: 1.3rem !important;
    color: #000B58 !important;
    margin: 1rem 0 !important;
    font-family: 'Cairo', sans-serif !important;
}

.purpose-item p {
    color: #666;
    margin: 0 !important;
    line-height: 1.6;
    text-align: center !important;
}

.cookie-type {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #e9ecef;
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cookie-type-header i {
    font-size: 2rem;
    color: #006A67;
}

.cookie-type-header h3 {
    flex: 1;
    margin: 0 !important;
    font-size: 1.6rem !important;
    color: #000B58 !important;
}

.cookie-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.cookie-badge.required {
    background: #dc3545;
    color: white;
}

.cookie-badge.optional {
    background: #6c757d;
    color: white;
}

.cookie-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-right: 4px solid #006A67;
    margin-top: 1.5rem;
}

.cookie-note i {
    font-size: 1.5rem;
    color: #006A67;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cookie-note p {
    margin: 0 !important;
    color: #333;
    line-height: 1.6;
}

.third-party-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.third-party-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.third-party-item:hover {
    border-color: #006A67;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 106, 103, 0.15);
}

.third-party-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.third-party-info h4 {
    font-family: 'Cairo', sans-serif;
    color: #000B58;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.third-party-info p {
    color: #666;
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
}

.third-party-info a {
    color: #006A67;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.third-party-info a:hover {
    color: #000B58;
    text-decoration: underline;
}

.browser-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.browser-guide {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.browser-guide:hover {
    border-color: #006A67;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 106, 103, 0.15);
}

.browser-guide i {
    font-size: 2.5rem;
    color: #006A67;
    margin-bottom: 1rem;
    display: block;
}

.browser-guide h4 {
    font-family: 'Cairo', sans-serif;
    color: #000B58;
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
}

.browser-guide p {
    color: #666;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.browser-guide a {
    color: #006A67;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.browser-guide a:hover {
    color: #000B58;
    text-decoration: underline;
}

.impact-warning {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff3cd;
    padding: 2rem;
    border-radius: 15px;
    border-right: 4px solid #ffc107;
}

.impact-warning > i {
    font-size: 3rem;
    color: #ff9800;
    flex-shrink: 0;
}

.impact-content h3 {
    font-family: 'Cairo', sans-serif;
    color: #000B58;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.impact-content p {
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.impact-content ul {
    margin: 0 0 0 1.5rem;
    padding: 0;
}

.impact-content li {
    color: #666;
    margin-bottom: 0.5rem;
}

.duration-table {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.duration-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    gap: 1.5rem;
}

.duration-type {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.duration-type i {
    font-size: 1.8rem;
    color: #006A67;
}

.duration-type strong {
    font-family: 'Cairo', sans-serif;
    color: #000B58;
    font-size: 1.1rem;
}

.duration-time {
    text-align: left;
}

.time-badge {
    display: inline-block;
    background: #006A67;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 0.5rem;
}

.duration-time p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-purposes {
        grid-template-columns: 1fr;
    }
    
    .browser-guides {
        grid-template-columns: 1fr;
    }
    
    .third-party-item {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .duration-item {
        flex-direction: column;
        text-align: center;
    }
    
    .duration-time {
        text-align: center;
    }
}

/* ===== ABOUT US PAGE SPECIFIC STYLES ===== */

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000B58 0%, #006A67 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    border-color: #006A67;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 106, 103, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2.5rem;
    color: #FFF4B7;
}

.mission-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem !important;
    color: #000B58 !important;
    margin: 0 0 1rem 0 !important;
    font-weight: 700;
}

.mission-card p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 !important;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #006A67;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 106, 103, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 11, 88, 0.1) 0%, rgba(0, 106, 103, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
}

.value-icon i {
    font-size: 2rem;
    color: #006A67;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    color: #FFF4B7;
}

.value-item h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem !important;
    color: #000B58 !important;
    margin: 0 0 0.75rem 0 !important;
    font-weight: 600;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 !important;
}

/* Trust Reasons */
.trust-reasons {
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.reason-item:last-child {
    margin-bottom: 0;
}

.reason-item:hover {
    border-color: #006A67;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 106, 103, 0.15);
}

.reason-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
    color: #FFF4B7;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 106, 103, 0.3);
}

.reason-content {
    flex: 1;
}

.reason-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.4rem !important;
    color: #000B58 !important;
    margin: 0 0 0.75rem 0 !important;
    font-weight: 600;
}

.reason-content p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 !important;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #000B58 0%, #006A67 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 106, 103, 0.3);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0 !important;
    line-height: 1.6;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #FFF4B7;
    color: #000B58;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 244, 183, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 244, 183, 0.5);
    color: #000B58;
    text-decoration: none;
}

.primary-btn i {
    font-size: 1.2rem;
}

/* Social Links in Sidebar */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-item:hover {
        transform: translateY(-5px);
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .primary-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .mission-card h3 {
        font-size: 1.3rem !important;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .reason-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}