/* =============================================
   Absconding Removal Dubai — service page styles
   Reuses gv-* hero/section scaffolding from golden-visa-dubai.css;
   this file holds only the page-specific ab-* components.
   ============================================= */

:root {
    --ab-red: #c0392b;
}

/* HERO extras */
.ab-alert-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(192, 57, 43, 0.09);
    border: 1px solid rgba(192, 57, 43, 0.22);
    border-radius: 8px;
    color: var(--ab-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.ab-hero-visual {
    background: linear-gradient(135deg, var(--gv-dark) 0%, var(--gv-green) 100%);
    border-radius: 20px;
    padding: 36px;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(11, 3, 42, 0.18);
    width: 100%;
}

.ab-hero-visual h3 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffffff;
}

.ab-hero-visual p {
    font-size: 14px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 26px;
}

.ab-price-badge {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 20px 22px;
}

.ab-price-badge .plabel {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gv-green);
    margin-bottom: 5px;
}

.ab-price-badge .pamount {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: var(--gv-dark);
    margin-bottom: 4px;
}

.ab-price-badge .pc-currency {
    font-size: 20px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 3px;
}

.ab-price-badge .pnote {
    font-size: 13px;
    color: #777777;
    font-weight: 500;
}

/* PROBLEM — situation cards + urgent sidebar */
.ab-problem-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.ab-situation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ab-sit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gv-bg);
    border: 1px solid var(--gv-line);
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 8px 20px rgba(11, 3, 42, 0.05);
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;
}

.ab-sit-card:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 28px rgba(11, 3, 42, 0.09);
}

.ab-sit-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gv-green);
    border-radius: 4px 0 0 4px;
}

.ab-sit-icon {
    font-size: 30px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--gv-cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-sit-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ab-sit-body p {
    font-size: 14px;
    line-height: 23px;
    color: var(--gv-muted);
    letter-spacing: 0.28px;
    margin: 0;
}

.ab-urgent-card {
    position: sticky;
    top: 110px;
    background: var(--gv-cream);
    border: 1px solid rgba(133, 166, 166, 0.35);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(11, 3, 42, 0.08);
}

.ab-urgent-card .uc-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gv-green);
    margin-bottom: 10px;
    display: block;
}

.ab-urgent-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ab-urgent-card p {
    font-size: 14px;
    line-height: 23px;
    color: #4f4f4f;
    letter-spacing: 0.28px;
    margin-bottom: 22px;
}

.ab-check-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 12px;
    background: var(--gv-green);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: 0.25s ease;
    margin-bottom: 12px;
}

.ab-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(41, 109, 107, 0.25);
    color: #ffffff;
}

.ab-check-note {
    font-size: 13px;
    color: #5a5a5a;
    text-align: center;
    font-weight: 600;
}

/* WHAT'S INCLUDED — horizontal service rows */
.ab-services-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ab-srv-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--gv-line);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 8px 20px rgba(11, 3, 42, 0.05);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.ab-srv-card::after {
    content: '→';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--gv-green-soft);
    font-weight: 700;
    transition: 0.25s ease;
}

.ab-srv-card:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 34px rgba(11, 3, 42, 0.09);
}

.ab-srv-card:hover::after {
    right: 22px;
    color: var(--gv-green);
}

.ab-srv-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gv-cream);
    border-radius: 16px;
    font-size: 28px;
    flex-shrink: 0;
}

.ab-srv-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.25;
}

.ab-srv-body p {
    font-size: 14px;
    line-height: 23px;
    color: var(--gv-muted);
    letter-spacing: 0.28px;
    padding-right: 32px;
    margin: 0;
}

/* DOCUMENTS */
.ab-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.ab-doc-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: var(--gv-bg);
    border: 1px solid var(--gv-line);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: 0 8px 20px rgba(11, 3, 42, 0.05);
    transition: 0.25s ease;
}

.ab-doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(11, 3, 42, 0.09);
}

.ab-doc-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--gv-green);
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}

.ab-doc-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25;
}

.ab-doc-body p {
    font-size: 14px;
    line-height: 23px;
    color: var(--gv-muted);
    letter-spacing: 0.28px;
    margin: 0;
}

.ab-docs-note {
    background: var(--gv-cream);
    border: 1px solid var(--gv-line);
    border-radius: 14px;
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    color: #2f2f2f;
    text-align: center;
}

/* PROCESS */
.ab-process-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: start;
}

.ab-process-left {
    position: sticky;
    top: 110px;
}

.ab-process-left h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 16px;
}

.ab-process-left > p {
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.28px;
    color: var(--gv-muted);
    margin-bottom: 26px;
}

.ab-timeline-card {
    background: var(--gv-cream);
    border: 1px solid rgba(133, 166, 166, 0.35);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(11, 3, 42, 0.08);
}

.ab-timeline-card span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gv-green);
    margin-bottom: 8px;
}

.ab-timeline-card strong {
    display: block;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: var(--gv-dark);
    margin-bottom: 6px;
}

.ab-timeline-card small {
    font-size: 14px;
    line-height: 23px;
    color: var(--gv-muted);
}

.ab-steps {
    position: relative;
    padding-left: 34px;
}

.ab-steps::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--gv-green) 0%, var(--gv-green-soft) 100%);
}

.ab-step {
    position: relative;
    background: var(--gv-bg);
    border: 1px solid var(--gv-line);
    border-radius: 16px;
    padding: 24px 26px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(11, 3, 42, 0.05);
}

.ab-step::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 26px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gv-green);
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(41, 109, 107, 0.15);
}

.ab-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.ab-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gv-cream);
    color: var(--gv-green);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.ab-step-badge {
    display: inline-flex;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--gv-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.ab-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 1.2;
}

.ab-step p {
    font-size: 14px;
    line-height: 23px;
    color: var(--gv-muted);
    letter-spacing: 0.28px;
    margin: 0;
}

/* COMPARISON */
.ab-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ab-cmp-col {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(11, 3, 42, 0.09);
}

.ab-cmp-header {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ab-cmp-header-solo {
    background: #fff3f3;
    border-bottom: 2px solid rgba(192, 57, 43, 0.18);
}

.ab-cmp-header-sarmat {
    background: linear-gradient(135deg, var(--gv-dark) 0%, var(--gv-green) 100%);
}

.ab-cmp-header-icon {
    font-size: 26px;
}

.ab-cmp-header h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.ab-cmp-header-solo h3 {
    color: var(--ab-red);
}

.ab-cmp-header-sarmat h3 {
    color: #ffffff;
}

.ab-cmp-header-sarmat p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 2px 0 0;
}

.ab-cmp-header-solo p {
    font-size: 13px;
    color: rgba(192, 57, 43, 0.7);
    margin: 2px 0 0;
}

.ab-cmp-body {
    background: #ffffff;
    border: 1px solid var(--gv-line);
    border-top: none;
}

.ab-cmp-body-bad {
    border-color: rgba(192, 57, 43, 0.14);
}

.ab-cmp-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gv-line);
}

.ab-cmp-row-bad {
    border-bottom-color: rgba(192, 57, 43, 0.10);
}

.ab-cmp-row:last-child {
    border-bottom: none;
}

.ab-cmp-icon-bad {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.10);
    color: var(--ab-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.ab-cmp-icon-good {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gv-cream);
    color: var(--gv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.ab-cmp-row strong {
    display: block;
    font-size: 15px;
    color: #2f2f2f;
    margin-bottom: 3px;
    line-height: 1.3;
}

.ab-cmp-row span {
    font-size: 13px;
    color: var(--gv-muted);
    line-height: 1.45;
}

.ab-cmp-row-bad strong {
    color: var(--ab-red);
}

.ab-cmp-footer {
    padding: 20px 24px;
    border-top: 2px solid var(--gv-line);
    background: var(--gv-cream);
    font-size: 14px;
    font-weight: 700;
    color: var(--gv-green);
    text-align: center;
}

.ab-cmp-footer-bad {
    border-top-color: rgba(192, 57, 43, 0.18);
    background: #fff3f3;
    color: var(--ab-red);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .ab-problem-layout {
        grid-template-columns: 1fr;
    }

    .ab-urgent-card {
        position: relative;
        top: auto;
    }

    .ab-process-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ab-process-left {
        position: relative;
        top: auto;
    }

    .ab-compare-grid {
        grid-template-columns: 1fr;
    }

    .ab-docs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .ab-srv-card {
        grid-template-columns: 52px 1fr;
        gap: 16px;
        padding: 20px;
    }

    .ab-srv-body p {
        padding-right: 0;
    }

    .ab-srv-card::after {
        display: none;
    }

    .ab-hero-visual {
        padding: 26px;
    }

    .ab-process-left h2 {
        font-size: 28px;
    }
}

/* Mobile: skip AOS scroll-reveal on this page — fast scrolling and slow
   first loads otherwise leave whole sections at opacity 0 until JS catches up */
@media (max-width: 980px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
