/* ====================================
   Naql Afsh Riyadh - Complete CSS Stylesheet
   شركة الصقر الدولي لنقل العفش بالرياض
   ==================================== */

/* ====================================
   Global Styles & Variables
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #ff6b35;
    --accent-color: #28a745;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

strong {
    color: var(--primary-color);
    font-weight: 700;
}

h1 {
    color: var(--dark-color);
    font-size: 36px;
    font-weight: 900;
    margin: 30px 0;
    text-align: center;
}

h2 {
    color: var(--dark-color);
    font-size: 32px;
    font-weight: 800;
    margin: 40px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}

h3 {
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 20px;
}

h4 {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
}

h5 {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* ====================================
   Services Section Styles
   ==================================== */
.service_content_right_col {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.node-summary {
    margin: 20px 0;
}

.para-zero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 30px;
    border-radius: 12px;
    border-right: 5px solid var(--primary-color);
    font-size: 17px;
    line-height: 2;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.services-intro {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-right: 5px solid var(--primary-color);
}

.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.services-list li {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-list li:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.services-list li i {
    color: var(--secondary-color);
    font-size: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ====================================
   Why Choose Us Section
   ==================================== */
.why-choose-us {
    background: #f8f9fa;
    padding: 40px 25px;
    border-radius: 15px;
    margin-top: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.advantage-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.advantage-item h3 {
    color: var(--dark-color);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.advantage-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.closing-paragraph {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-right: 4px solid var(--accent-color);
    margin: 30px 0;
    font-size: 16px;
    line-height: 2;
}

/* ====================================
   CTA Box Styles
   ==================================== */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d6ca8 100%);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    margin-top: 35px;
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.3);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-box > p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: right;
}

.cta-box ul li {
    padding: 8px 0;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    background: #e55a2b;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

/* ====================================
   Guide & Ranking Section
   ==================================== */
.guide-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.intro-highlight {
    font-size: 18px;
    line-height: 2;
    text-align: justify;
    margin-bottom: 0;
}

.company-ranking-section {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    margin: 30px 0;
}

.criteria-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.criteria-list li {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.criteria-list li:hover {
    transform: translateX(-5px);
}

.criteria-list i {
    color: var(--accent-color);
    font-size: 20px;
}

/* ====================================
   Pricing Features Section
   ==================================== */
.affordable-services {
    margin: 40px 0;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pricing-card.highlight-card {
    border-top-color: var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f2 100%);
}

.pricing-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.pricing-card h4 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.pricing-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* ====================================
   Why Best Section
   ==================================== */
.why-alsaqr-best {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-right: 5px solid var(--accent-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* ====================================
   Installment Section Styles
   ==================================== */
.installment-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 50px 30px;
    border-radius: 20px;
    margin: 50px 0;
}

.installment-highlight-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    border-right: 6px solid var(--secondary-color);
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.installment-intro {
    font-size: 17px;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 0;
}

.installment-details {
    margin: 40px 0;
}

/* Installment Plans Grid */
.installment-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.plan-option {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.plan-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.featured-plan {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.plan-icon {
    text-align: center;
    margin-bottom: 20px;
}

.plan-icon i {
    font-size: 56px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.plan-duration {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.plan-option h5 {
    text-align: center;
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.plan-option ul {
    list-style: none;
    padding: 0;
}

.plan-option ul li {
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Benefits Grid */
.installment-benefits {
    margin: 40px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 0;
}

/* Conditions Section */
.installment-conditions {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.conditions-list {
    list-style: none;
    padding: 20px;
}

.conditions-list li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    line-height: 1.7;
}

.conditions-list li:last-child {
    border-bottom: none;
}

/* Installment CTA Section */
.installment-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d6ca8 100%);
    padding: 45px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    color: white;
}

.cta-content h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-btn,
.secondary-cta-btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.primary-cta-btn {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.primary-cta-btn:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.secondary-cta-btn {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.secondary-cta-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Service Coverage */
.service-coverage {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-right: 5px solid var(--accent-color);
    margin: 40px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* ====================================
   Final CTA Banner
   ==================================== */
.final-cta-section {
    margin: 60px 0;
}

.cta-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

.cta-banner h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.offer-text {
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.highlight-text {
    background: white;
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 28px;
    display: inline-block;
}

.urgency-text {
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    margin: 20px 0;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.mega-cta-button {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 22px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mega-cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 992px) {
    .installment-plans {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .featured-plan {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .guide-intro,
    .installment-highlight-box,
    .cta-banner {
        padding: 25px;
    }
    
    .installment-plans {
        grid-template-columns: 1fr;
    }
    
    .featured-plan {
        transform: scale(1);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .advantages-grid,
    .pricing-features,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner h3 {
        font-size: 28px;
    }
    
    .offer-text {
        font-size: 18px;
    }
    
    .highlight-text {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .cta-banner,
    .installment-cta {
        padding: 20px;
    }
    
    .mega-cta-button {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .para-zero,
    .services-intro {
        padding: 20px;
    }
}

/* ====================================
   Utility Classes
   ==================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

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

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ====================================
   Print Styles
   ==================================== */
@media print {
    .cta-button,
    .primary-cta-btn,
    .secondary-cta-btn,
    .mega-cta-button {
        display: none;
    }
    
    .cta-banner::before {
        display: none;
    }
}
