/* تنسيقات خاصة بصفحة الخدمات المحدثة */
/* المتغيرات موروثة من styles.css: --primary-blue, --secondary-blue, --accent-orange */

/* ========== Services Landing - Modern Redesign ========== */
.services-landing-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.services-landing-modern-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-landing-modern-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 35%, #1a365d 70%, #0f172a 100%);
}

.services-landing-modern-pattern {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    mix-blend-mode: overlay;
}

.services-landing-modern-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(237, 137, 54, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.services-landing-modern-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.services-landing-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.services-landing-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.services-landing-breadcrumb a:hover {
    color: var(--accent-orange);
}

.services-landing-breadcrumb span {
    color: rgba(255, 255, 255, 0.95);
}

.services-landing-breadcrumb i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.services-landing-modern-content {
    color: #fff;
}

.services-landing-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.services-landing-modern-title {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.services-landing-modern-title-main {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.services-landing-modern-title-accent {
    background: linear-gradient(135deg, var(--accent-orange), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-landing-modern-subtitle {
    margin: 0 0 2rem;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.services-landing-modern-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.services-landing-modern-features li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    transition: background 0.2s ease, transform 0.2s ease;
}

.services-landing-modern-features li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.services-landing-modern-features li i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.services-landing-modern-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.services-landing-cta-primary,
.services-landing-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-landing-cta-primary {
    background: linear-gradient(135deg, var(--accent-orange), #f59e0b);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(237, 137, 54, 0.35);
}

.services-landing-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(237, 137, 54, 0.45);
}

.services-landing-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.services-landing-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Stats strip */
.services-landing-modern-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 520px;
    margin: 0 auto;
}

.services-landing-stat {
    text-align: center;
}

.services-landing-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.2rem;
}

.services-landing-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.services-landing-stat-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Scroll hint */
.services-landing-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s ease;
    animation: servicesLandingScrollBounce 2s ease-in-out infinite;
}

.services-landing-scroll:hover {
    color: #fff;
}

@keyframes servicesLandingScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Responsive */
@media (max-width: 768px) {
    .services-landing-modern {
        min-height: auto;
        padding: 3rem 0 4rem;
    }

    .services-landing-modern-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .services-landing-stat-divider {
        width: 60%;
        height: 1px;
    }

    .services-landing-modern-features {
        gap: 0.5rem;
    }

    .services-landing-modern-features li {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.arwa-specialized-sections .specialized-title {
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.arwa-specialized-sections .specialized-subtitle {
    color: rgba(255, 255, 255, 0.94) !important;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    color: white;
    font-size: 1.8rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Services Grid - خدماتنا المتخصصة (تصميم متجاوب) */
.services-landing-section {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background: linear-gradient(145deg, #0b0f19 0%, #161e2e 50%, #0b0f19 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-landing-section .section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services-landing-section .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.2rem;
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(22, 28, 41, 0.95) 0%, rgba(32, 40, 57, 0.9) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.45s cubic-bezier(0.25, 1, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Hover Glowing borders themed for each service */
.services-grid > *:nth-child(1):hover {
    border-color: rgba(237, 137, 54, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(237, 137, 54, 0.2);
}
.services-grid > *:nth-child(2):hover {
    border-color: rgba(66, 153, 225, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(66, 153, 225, 0.2);
}
.services-grid > *:nth-child(3):hover {
    border-color: rgba(72, 187, 120, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(72, 187, 120, 0.2);
}
.services-grid > *:nth-child(4):hover {
    border-color: rgba(236, 201, 75, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(236, 201, 75, 0.2);
}
.services-grid > *:nth-child(5):hover {
    border-color: rgba(147, 51, 234, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(147, 51, 234, 0.2);
}
.services-grid > *:nth-child(6):hover {
    border-color: rgba(246, 173, 85, 0.45);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(246, 173, 85, 0.2);
}

.service-card:hover {
    transform: translateY(-8px);
}

@media (min-width: 768px) {
    .service-card.featured {
        border-color: rgba(237, 137, 54, 0.3);
    }
}

/* Service Card Visual Area */
.service-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9.5;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.service-card:hover .service-image-wrap img {
    transform: scale(1.08);
}

.service-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(237, 137, 54, 0.9);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

/* Overlapping circular icon styling */
.service-icon-floating {
    position: absolute;
    bottom: -22px;
    left: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(66, 153, 225, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-floating {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(66, 153, 225, 0.5);
}

.service-icon-floating i {
    color: white;
    font-size: 1.25rem;
}

.service-content {
    padding: 2.2rem 2rem 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-width: 0;
}

.service-content h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    color: #fff;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.service-content > p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
    font-size: clamp(0.88rem, 1.1vw, 0.95rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.service-features {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.2rem 0;
}

.service-features .feature-item i {
    color: var(--accent-orange);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.service-features .feature-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.service-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.specialty {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover .specialty {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.process-steps-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.2rem;
}

.mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.benefit-item i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
}

.import-export-tabs {
    display: flex;
    gap: 0.8rem;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tab-item.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.service-coverage h5 {
    color: #fff;
    margin: 0 0 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.coverage-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.coverage-items span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.3rem 0.75rem;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 500;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quality-item i {
    color: var(--accent-orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.quality-item span {
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
}

.certification-logos {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.cert-badge {
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.shipping-methods {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.6rem;
}
@media (min-width: 400px) {
    .shipping-methods { grid-template-columns: repeat(3, 1fr); }
}

.method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
}

.method-item i {
    color: var(--accent-orange);
    font-size: 1.3rem;
}

.method-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.tracking-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 10px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.tracking-feature i {
    font-size: 1.1rem;
}

.support-types {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.6rem;
}
@media (min-width: 400px) {
    .support-types { grid-template-columns: repeat(3, 1fr); }
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    text-align: center;
}

.support-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.support-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    border-radius: 10px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.response-time i {
    font-size: 1.1rem;
}

.service-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.service-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.2rem, 3vw, 1.8rem);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.4);
}

.service-price {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* Work Process Section */
.work-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
}

.work-process-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.work-process-section .section-title,
.work-process-section .title-decoration {
    color: white;
}

.work-process-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.process-timeline-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.process-item[data-step] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-item[data-step].animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.3);
}

.process-icon i {
    color: white;
    font-size: 2rem;
}

.process-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

.process-duration {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.benefit-card h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Quote CTA Section - احصل على عرض سعر مخصص */
.contact-form-section.quote-cta-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 100%);
}

.quote-cta-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.2), rgba(251, 191, 36, 0.12));
    border: 1px solid rgba(237, 137, 54, 0.4);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color, #1a365d);
}

.quote-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.75rem;
}

.quote-cta-desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.quote-cta-link {
    color: var(--accent-orange, #ed8936);
    font-weight: 600;
    text-decoration: none;
}

.quote-cta-link:hover {
    text-decoration: underline;
}

.form-wrapper.quote-cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    padding: 2.5rem;
    align-items: start;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro .section-header {
    text-align: right;
    margin-bottom: 3rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-benefits .benefit-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e53e3e;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.form-agreements {
    margin: 2rem 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-group label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.checkbox-group a {
    color: var(--accent-orange);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(237, 137, 54, 0.3);
}

.response-note {
    color: var(--dark-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.response-note i {
    color: var(--accent-orange);
}

/* صندوق نجاح طلب العرض — عرض رقم المرجع */
.quote-success-box {
    background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #a7f3d0;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #065f46;
}
.quote-success-box .quote-success-icon {
    font-size: 3rem;
    color: #059669;
    display: block;
    margin-bottom: 1rem;
}
.quote-success-box h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #047857;
}
.quote-success-box p { margin: 0.4rem 0; }
.quote-success-note { font-size: 0.95rem; color: #065f46; }
.quote-success-box a { color: #047857; font-weight: 600; text-decoration: underline; }
.quote-success-box a:hover { color: #065f46; }

.testimonials-loading, .faq-loading { text-align: center; color: var(--dark-gray); padding: 2rem; }

/* أسئلة شائعة Accordion */
.faq-section { padding: 4rem 0; background: var(--light-gray); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-group { margin-bottom: 2rem; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-size: 1.1rem; color: var(--primary-blue); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent-orange); }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 0.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); overflow: hidden; border: 1px solid #e2e8f0; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: right; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-orange); transition: transform 0.3s; flex-shrink: 0; margin-right: auto; margin-left: 0.5rem; }
[dir="rtl"] .faq-item summary::after { margin-right: 0; margin-left: auto; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 1rem 1.25rem; color: var(--dark-gray); line-height: 1.6; border-top: 1px solid #e2e8f0; }

/* CTA Section Modern */
.cta-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.cta-stats .stat-item {
    text-align: center;
    color: white;
}

.cta-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    display: block;
}

.cta-stats .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: block;
}

.cta-stats .stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-orange), #f6ad55);
    color: white;
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(237, 137, 54, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.cta-button.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 8rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.floating-element.element-3 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-intro .section-header {
        text-align: center;
    }
    
    .process-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    }

@media (max-width: 992px) {
    .services-landing-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .services-landing-content {
        text-align: center;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .services-landing-cta {
        justify-content: center;
    }
    
    .services-landing-visual {
        order: -1;
    }
    
    .landing-stats-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero h1,
    .services-landing-title {
        font-size: 2.25rem;
    }
    
    .services-landing-title {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features,
    .services-landing-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .services-landing-features .feature-item {
        min-width: 200px;
    }
    
    .landing-stats-cards {
        grid-template-columns: 1fr;
    }
    
    .landing-visual-img img {
        height: 180px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .service-footer .service-btn {
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-hero h1,
    .services-landing-title {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
}

/* إصلاح تداخل الـ hero section مع navbar */
.services-hero {
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

/* Spacing and Contrast Fixes for Homepage Services Details Section */
.services-landing-section {
    background: linear-gradient(145deg, #0b0f19 0%, #161e2e 50%, #0b0f19 100%) !important;
    padding-bottom: 6rem !important;
}
.services-landing-section .services-details-container {
    padding-top: 5rem !important;
    margin-bottom: 2.5rem !important;
}
.services-landing-section .section-title-text h2 {
    color: #ffffff !important;
}
.services-landing-section .section-title-text p {
    color: rgba(255, 255, 255, 0.7) !important;
}
.services-landing-section .action-btn.primary {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}
.services-landing-section .action-btn.primary:hover {
    background: var(--accent-orange, #ed8936) !important;
    border-color: var(--accent-orange, #ed8936) !important;
    color: #ffffff !important;
}

/* Overrides to make statistics numbers and labels readable on dark background */
.stats .stat-number {
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    color: var(--accent-orange, #ed8936) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}
.stats .stat-label {
    font-size: 1.15rem !important;
    color: #ffffff !important;
    opacity: 0.95 !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

/* Homepage services details redesign matching the supplied dark card reference */
.services-landing-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6.2rem) 0 !important;
    background:
        radial-gradient(circle at 17% 10%, rgba(37, 73, 118, 0.24), transparent 28%),
        radial-gradient(circle at 78% 48%, rgba(32, 58, 92, 0.2), transparent 30%),
        linear-gradient(180deg, #111827 0%, #121c2d 48%, #0f1724 100%) !important;
}

.services-landing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.055;
    background-image:
        linear-gradient(45deg, transparent 46%, rgba(255, 255, 255, 0.12) 47%, transparent 50%),
        linear-gradient(-45deg, transparent 46%, rgba(255, 255, 255, 0.12) 47%, transparent 50%);
    background-size: 220px 220px;
    background-position: 30px 20px, 30px 20px;
    pointer-events: none;
}

.services-landing-section .services-details-container {
    max-width: 1240px;
    padding-top: 0 !important;
    margin-bottom: clamp(1.8rem, 4vw, 3rem) !important;
    position: relative;
    z-index: 1;
}

.services-landing-section .services-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    margin: 0;
}

.services-landing-section .section-title-text h2 {
    margin: 0 0 0.45rem;
    color: #ffffff !important;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
}

.services-landing-section .section-title-text p {
    margin: 0;
    color: rgba(232, 238, 248, 0.72) !important;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 600;
}

.services-landing-section .action-btn.primary {
    min-height: 46px;
    border-radius: 12px !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.04) !important;
    box-shadow: none !important;
}

.services-landing-section .action-btn.primary:hover {
    background: #f8942f !important;
    border-color: #f8942f !important;
}

.container-fluid-services {
    width: min(100% - 2rem, 1280px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(285px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 0;
    align-items: stretch;
}

.service-card {
    min-height: 640px;
    background:
        linear-gradient(180deg, rgba(31, 42, 61, 0.97), rgba(27, 37, 55, 0.98)),
        #1b2537;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 190px 0 0;
    opacity: 0.025;
    background-image:
        linear-gradient(45deg, transparent 44%, rgba(255, 255, 255, 0.16) 47%, transparent 51%),
        linear-gradient(-45deg, transparent 44%, rgba(255, 255, 255, 0.16) 47%, transparent 51%);
    background-size: 220px 220px;
    pointer-events: none;
}

.service-card.featured {
    border-color: rgba(248, 148, 47, 0.36);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(248, 148, 47, 0.45);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), 0 0 28px rgba(248, 148, 47, 0.12);
}

.service-visual {
    flex: 0 0 190px;
    width: 100%;
    height: 190px;
    aspect-ratio: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-image-wrap,
.service-image-wrap img {
    width: 100%;
    height: 100%;
}

.service-image-wrap img {
    object-fit: cover;
    filter: saturate(1.08) contrast(1.03);
}

.service-image-gradient {
    background: linear-gradient(to top, rgba(17, 24, 39, 0.34), transparent 54%);
}

.service-content {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: clamp(1.85rem, 3vw, 2.25rem) clamp(1.45rem, 3vw, 2rem) 1.45rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.service-content h3 {
    width: 100%;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.28rem, 2.1vw, 1.55rem);
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.service-content > p {
    max-width: 300px;
    margin: 0 auto;
    color: rgba(232, 238, 248, 0.74);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.service-features,
.quality-features {
    width: fit-content;
    margin: auto auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: right;
}

.service-features .feature-item,
.quality-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0;
    color: #ffffff;
    font-weight: 800;
}

.service-features .feature-item i,
.quality-item i {
    color: #ff962e;
    font-size: 0.92rem;
}

.service-features .feature-item span,
.quality-item span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    font-weight: 800;
}

.service-specialties,
.coverage-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
}

.specialty,
.coverage-items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.42rem 0.82rem;
    border: 1px solid rgba(226, 232, 240, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(240, 244, 250, 0.88);
    font-size: 0.82rem;
    font-weight: 800;
}

.process-steps-mini {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: auto 0 0;
    direction: rtl;
}

.mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9b35, #f7b057);
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    font-weight: 900;
}

.step-name {
    color: rgba(240, 244, 250, 0.88);
    font-size: 0.8rem;
    font-weight: 800;
}

.service-benefits {
    width: 100%;
    display: grid;
    gap: 0.75rem;
}

.benefit-item {
    min-height: 48px;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(226, 232, 240, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.benefit-item i {
    color: #ff962e;
    font-size: 1rem;
    order: 2;
}

.benefit-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 850;
}

.import-export-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: auto;
}

.tab-item {
    min-width: 90px;
    min-height: 44px;
    justify-content: center;
    border-radius: 10px;
    border-color: rgba(226, 232, 240, 0.17);
    background: rgba(255, 255, 255, 0.065);
    color: #ffffff;
    font-weight: 800;
}

.tab-item i {
    color: #ffffff;
}

.tab-item.active {
    background: rgba(36, 78, 127, 0.82);
    border-color: rgba(96, 165, 250, 0.34);
}

.service-coverage {
    width: 100%;
}

.service-coverage h5 {
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 900;
    text-align: center;
}

.shipping-methods {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: auto;
}

.method-item {
    min-height: 72px;
    padding: 0.8rem 0.55rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(226, 232, 240, 0.14);
    color: #ffffff;
}

.method-item i {
    color: #ff962e;
    font-size: 1.35rem;
}

.method-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 800;
}

.tracking-feature {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    border-radius: 10px;
    background: #254e82;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
}

.certification-logos {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.cert-badge {
    min-height: 50px;
    min-width: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8942f, #ffa63d);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
}

.service-footer {
    position: relative;
    z-index: 1;
    min-height: 108px;
    padding: 1.35rem 1.8rem 1.55rem;
    border-top: 1px solid rgba(226, 232, 240, 0.08);
    direction: ltr;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-btn {
    min-width: 150px;
    min-height: 52px;
    padding: 0.9rem 1.35rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #244c7d, #1f4373);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
    box-shadow: none;
}

.service-btn:hover {
    background: linear-gradient(135deg, #2b5a91, #244c7d);
    box-shadow: 0 12px 24px rgba(18, 52, 91, 0.32);
}

.service-price {
    color: #ff8a1f;
    font-size: 0.9rem;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(285px, 1fr));
    }
}

@media (max-width: 720px) {
    .services-landing-section .services-section-header {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-card {
        min-height: auto;
    }

    .service-visual {
        height: 200px;
        flex-basis: 200px;
    }

    .service-content {
        padding: 1.7rem 1.25rem 1.25rem;
    }

    .service-footer {
        flex-direction: column;
        min-height: auto;
        padding: 1.2rem;
    }

    .service-footer .service-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .shipping-methods {
        grid-template-columns: 1fr;
    }

    .process-steps-mini {
        grid-template-columns: repeat(2, 1fr);
    }
}
