/* =========================================================================
 * AZS Services — Elementor Widget Styles
 * ========================================================================= */

.elementor-widget-azs_services > .elementor-widget-container {
    padding: 0 !important;
    margin:  0 !important;
}

.azs-svc {
    --azs-bg:      #070712;
    --azs-primary: #7c3aed;
    --azs-cyan:    #06b6d4;
    --azs-accent:  #f59e0b;
    --azs-text:    #e6e6f0;
    --azs-muted:   #9aa0b4;
    --azs-radius:  20px;

    position:    relative;
    isolation:   isolate;
    overflow:    hidden;
    padding:     80px 20px;
    direction:   rtl;
    font-family: 'Cairo','DIN Next LT Arabic',system-ui,sans-serif;
    color:       var(--azs-text);
    line-height: 1.7;

    background:
        radial-gradient(900px 500px at 85% -10%, rgba(124,58,237,.22), transparent 60%),
        radial-gradient(700px 400px at 5%  10%,  rgba(6,182,212,.18),  transparent 60%),
        radial-gradient(600px 500px at 50% 110%, rgba(245,158,11,.12), transparent 60%),
        var(--azs-bg);

    margin-left:  calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width:        100vw;
}

.azs-svc *, .azs-svc *::before, .azs-svc *::after { box-sizing: border-box; }

.azs-svc__orb {
    position: absolute; border-radius: 9999px; filter: blur(80px);
    opacity: .4; pointer-events: none; z-index: 0;
    animation: azsFloat 14s ease-in-out infinite;
}
.azs-svc__orb--1 { width:380px; height:380px; background:#06b6d4; top:10%; left:-120px; }
.azs-svc__orb--2 { width:300px; height:300px; background:#7c3aed; bottom:-80px; right:-60px; animation-delay:-5s; }

@keyframes azsFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(25px,-30px) scale(1.1); }
}

.azs-svc__container { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

.azs-svc__header     { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.azs-svc__eyebrow    { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .25em; color: #22d3ee; margin-bottom: 12px; }
.azs-svc__title      { font-size: clamp(26px,4vw,44px); font-weight: 900; line-height: 1.25; color: #fff; margin: 0 0 16px; }
.azs-svc__subtitle   { color: var(--azs-muted); font-size: 16px; margin: 0; }

.azs-svc__gradient {
    background-image: linear-gradient(90deg, #7c3aed, #06b6d4, #f59e0b);
    -webkit-background-clip: text;
    background-clip:         text;
    color:                   transparent;
    -webkit-text-fill-color: transparent;
}

.azs-svc__grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .azs-svc__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .azs-svc__grid { grid-template-columns: 1fr 1fr 1fr; } }

.azs-svc__card {
    padding: 28px;
    border-radius: var(--azs-radius);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.azs-svc__card:hover {
    transform:    translateY(-6px);
    background:   rgba(255,255,255,.07);
    border-color: rgba(124,58,237,.5);
    box-shadow:   0 24px 48px -20px rgba(124,58,237,.35);
}

.azs-svc__icon       { font-size: 30px; line-height: 1; margin-bottom: 16px; }
.azs-svc__card-title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.azs-svc__card-text  { font-size: 14px; color: var(--azs-muted); line-height: 1.8; margin: 0 0 20px; flex: 1; }

.azs-svc__card-link {
    display:     inline-flex;
    align-items: center;
    gap:         6px;
    font-size:   13px;
    font-weight: 700;
    color:       #a78bfa;
    text-decoration: none;
    transition:  color .25s ease;
    margin-top:  auto;
}
.azs-svc__card-link:hover { color: #fff; }
.azs-svc__card-link svg   { flex-shrink: 0; }

.azs-svc__empty {
    text-align: center; padding: 40px;
    color: var(--azs-muted); font-size: 15px;
    border: 1px dashed rgba(255,255,255,.15);
    border-radius: var(--azs-radius);
}
