/* =========================================
   Hero Section Styles
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(30, 58, 138, 0.92) 50%, rgba(30, 64, 175, 0.88) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-lg);
    animation-delay: 0.1s;
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-black);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--white);
    animation-delay: 0.2s;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    animation-delay: 0.3s;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    animation-delay: 0.4s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-black);
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    animation-delay: 0.5s;
}

.hero-trust {
    animation-delay: 0.6s;
}

.trust-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-logo {
    font-size: var(--font-size-xl);
}

.trust-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 var(--space-xs);
}

.trust-badge {
    padding: var(--space-xs) var(--space-sm);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

.hero-image {
    position: relative;
    animation-delay: 0.7s;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 2;
}

.hero-image-decoration {
    position: absolute;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3) 0%, rgba(147, 197, 253, 0.3) 100%);
    z-index: 1;
}

.decoration-1 {
    width: 80%;
    height: 80%;
    top: -20px;
    right: -20px;
}

.decoration-2 {
    width: 70%;
    height: 70%;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-wave {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-wave {
        height: 60px;
    }
}

/* =========================================
   Services Section
   ========================================= */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-black);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    gap: var(--space-lg);
}

/* Services Cards - Horizontal on Mobile */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

.service-card {
    transition: all var(--transition-base);
    padding: var(--space-lg);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue-lightest) 0%, var(--primary-blue-lighter) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    color: var(--primary-blue);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.service-description {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 4px 0;
    color: var(--gray-700);
    font-size: var(--font-size-xs);
}

/* =========================================
   Features & Statistics Section
   ========================================= */
.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-content h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-xs);
    color: var(--gray-900);
}

.feature-content p {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.7;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

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

.stat-icon {
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.stat-card .stat-number {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-black);
    margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    opacity: 0.95;
}

.stat-card .stat-icon {
    margin-bottom: var(--space-sm);
}

.stat-card .stat-icon svg {
    width: 48px;
    height: 48px;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

@media (max-width: 480px) {
    .cta-section {
        padding: var(--space-2xl) 0;
    }
    
    .features-list {
        gap: var(--space-md);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-wrapper {
        width: 44px;
        height: 44px;
        margin: 0 auto var(--space-xs);
    }
    
    .feature-icon-wrapper .icon-lg {
        width: 22px;
        height: 22px;
    }
    
    .feature-content h4 {
        font-size: var(--font-size-sm);
        margin-bottom: 4px;
    }
    
    .feature-content p {
        font-size: var(--font-size-xs);
    }
    
    /* تصغير بطاقات الإحصائيات للجوال */
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: var(--space-sm);
    }
    
    .stat-card .stat-icon {
        margin-bottom: 8px;
    }
    
    .stat-card .stat-icon .icon-2xl {
        width: 36px;
        height: 36px;
    }
    
    .stat-card .stat-number {
        font-size: var(--font-size-2xl);
        margin-bottom: 4px;
    }
    
    .stat-card .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .cta-title {
        font-size: var(--font-size-xl);
    }
    
    .cta-description {
        font-size: var(--font-size-sm);
    }
    
    .cta-feature {
        font-size: var(--font-size-sm);
    }
    
    .footer {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-sm);
    }
    
    .footer-title {
        font-size: var(--font-size-base);
    }
    
    .footer-description,
    .footer-links a,
    .footer-contact li {
        font-size: var(--font-size-sm);
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link .icon-md {
        width: 18px;
        height: 18px;
    }
    
    /* تحسين تخطيط الفوتر للجوال */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-about {
        grid-column: 1;
        text-align: center;
        padding-bottom: var(--space-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col {
        margin-bottom: 0;
        padding: 6px 0;
    }
    
    .footer-title {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-sm);
        text-align: right;
    }
    
    .footer-links,
    .footer-contact {
        text-align: right;
    }
    
    .footer-links li {
        margin-bottom: 4px;
    }
    
    .footer-contact li {
        margin-bottom: 8px;
        font-size: var(--font-size-xs);
    }
    
    .footer-contact li {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        padding-top: var(--space-sm);
        gap: 8px;
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        font-size: 11px;
        order: 2;
    }
    
    .footer-bottom-links {
        order: 1;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-links a {
        font-size: 11px;
    }
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.93) 0%, rgba(30, 58, 138, 0.90) 100%);
    z-index: -1;
}

.cta-content {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-black);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.cta-features {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
        text-align: center;
    }
    
    .cta-feature {
        flex-direction: column;
        font-size: 13px;
        gap: 4px;
    }
    
    .cta-feature .icon-md {
        width: 18px;
        height: 18px;
    }
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.95);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-description {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link .icon-md {
        width: 18px;
        height: 18px;
    }
}

.social-link:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    font-size: var(--font-size-base);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    color: var(--gray-400);
    font-size: var(--font-size-base);
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.footer-bottom-links a {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links .divider {
    color: var(--gray-600);
}

/* =========================================
   Mobile Responsive Styles
   ========================================= */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        line-height: 1.2;
        margin-bottom: var(--space-sm);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-md);
    }
    
    .hero-badge {
        font-size: var(--font-size-xs);
        padding: 6px var(--space-sm);
        margin-bottom: var(--space-sm);
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-trust {
        text-align: center;
    }
    
    .trust-logos {
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: var(--space-lg);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-sm);
    }
    
    .section-description {
        font-size: var(--font-size-base);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-md);
        text-align: center;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 8px;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-title {
        font-size: 15px;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .service-description {
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .service-features li {
        font-size: 11px;
        padding: 2px 0;
    }
    
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .feature-item {
        gap: var(--space-sm);
    }
    
    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .feature-content h4 {
        font-size: var(--font-size-base);
    }
    
    .feature-content p {
        font-size: var(--font-size-sm);
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .stat-card {
        padding: var(--space-md);
        display: flex;
        align-items: center;
        gap: var(--space-md);
        text-align: right;
    }
    
    .stat-card .stat-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .stat-card .stat-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .stat-card .stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .stat-card .stat-label {
        font-size: var(--font-size-xs);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-xs);
    }
    
    .footer-description {
        font-size: var(--font-size-xs);
        margin-bottom: var(--space-sm);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-links a {
        font-size: var(--font-size-sm);
    }
    
    .footer-contact li {
        margin-bottom: 8px;
        font-size: var(--font-size-sm);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .cta-title {
        font-size: var(--font-size-2xl);
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: var(--font-size-base);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: calc(var(--space-xl) + 60px);
        padding-bottom: var(--space-lg);
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .hero-main-image {
        border-radius: var(--radius-lg);
    }
    
    .hero-image-decoration {
        display: none;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: var(--space-sm);
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        backdrop-filter: blur(5px);
    }
    
    .stat-number {
        font-size: var(--font-size-lg);
        font-weight: var(--font-extrabold);
    }
    
    .stat-label {
        font-size: 10px;
        line-height: 1.2;
    }
    
    .cta-buttons {
        gap: 10px;
    }
    
    .cta-buttons .btn {
        padding: 12px var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .hero-buttons .btn .icon-md {
        width: 18px;
        height: 18px;
    }
    
    .trust-text {
        font-size: var(--font-size-xs);
    }
    
    .trust-logo {
        font-size: var(--font-size-base);
    }
    
    .trust-badge {
        font-size: var(--font-size-xs);
    }
    
    /* تصغير بطاقات الخدمات وترتيبها عرضياً */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-card {
        padding: var(--space-sm);
        text-align: center;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 8px;
    }
    
    .service-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .service-title {
        font-size: 13px;
        margin-bottom: 0;
        line-height: 1.3;
    }
    
    .service-description {
        display: none;
    }
    
    .service-features {
        display: none;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .section-description {
        font-size: var(--font-size-sm);
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--space-sm);
    }
}
