﻿/* ============================================================
   Keyframes
============================================================ */
@keyframes phoneRing {
    0%,100% {
        transform: rotate(0)
    }

    10% {
        transform: rotate(15deg)
    }

    20% {
        transform: rotate(-12deg)
    }

    30% {
        transform: rotate(10deg)
    }

    40% {
        transform: rotate(-8deg)
    }

    50% {
        transform: rotate(6deg)
    }

    60% {
        transform: rotate(-4deg)
    }

    70% {
        transform: rotate(3deg)
    }

    80% {
        transform: rotate(-2deg)
    }

    90% {
        transform: rotate(1deg)
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulseGlow {
    0%,100% {
        box-shadow: 0 10px 28px rgba(200,29,37,.28)
    }

    50% {
        box-shadow: 0 14px 40px rgba(200,29,37,.50)
    }
}

@keyframes shimmerPass {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes borderPulse {
    0%,100% {
        border-color: rgba(7,43,65,.30)
    }

    50% {
        border-color: rgba(7,43,65,.62)
    }
}

@keyframes modCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.97)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes dotPulse {
    0%,100% {
        transform: scale(1);
        opacity: .7
    }

    50% {
        transform: scale(1.5);
        opacity: 1
    }
}

@keyframes clientCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.96)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes shimmerSlide {
    0% {
        transform: translateX(-100%) skewX(-15deg)
    }

    100% {
        transform: translateX(300%) skewX(-15deg)
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes contactCardIn {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes floatBubble {
    0%,100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-14px) scale(1.04)
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1
    }

    100% {
        transform: scale(2.4);
        opacity: 0
    }
}

@keyframes lineGrow {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes badgePop {
    0% {
        transform: scale(0.7);
        opacity: 0
    }

    70% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes mapPinDrop {
    0% {
        transform: translateY(-30px);
        opacity: 0
    }

    70% {
        transform: translateY(4px)
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --section-gap: 80px;
    --section-pad-v: 72px;
    --card-bg: #fff;
    --card-border: 1px solid rgba(11,57,84,.10);
    --card-radius: 28px;
    --card-shadow: 0 8px 32px rgba(11,57,84,.08), 0 2px 8px rgba(11,57,84,.05), inset 0 1px 0 rgba(255,255,255,.90);
    --card-shadow-hover: 0 24px 48px rgba(11,57,84,.14), 0 6px 16px rgba(11,57,84,.08), inset 0 1px 0 rgba(255,255,255,.95);
    --card-ease: cubic-bezier(.34,1.56,.64,1);
    --acc-red: #C81D25;
    --acc-red-2: #9B1219;
    --acc-blue: #1A6CA0;
    --acc-blue-2: #0B3954;
    --acc-teal: #087E8B;
    --acc-teal-2: #065E69;
    --acc-amber: #D4860A;
    --acc-amber-2: #A66808;
    --acc-purple: #7B52AB;
    --acc-purple-2: #5F3F87;
    --acc-green: #1A8C5B;
    --acc-green-2: #126A44;
    --icon-glass-bg: linear-gradient(135deg, rgba(255,255,255,.70) 0%, rgba(243,250,255,.50) 100%);
    --icon-glass-border: 1px solid rgba(11,57,84,.12);
    --icon-glass-shadow: 0 4px 16px rgba(11,57,84,.08), 0 1px 2px rgba(11,57,84,.04), inset 0 1px 0 rgba(255,255,255,.90), inset 0 -1px 0 rgba(11,57,84,.04);
    --icon-glass-shadow-hover: 0 8px 24px rgba(11,57,84,.14), 0 2px 4px rgba(11,57,84,.06), inset 0 1px 0 rgba(255,255,255,.95);
}

/* ============================================================
   9. CONTACT SECTION — HERO BAND
============================================================ */
.contact-section {
    width: 100%;
    padding: var(--section-pad-v) 0 0;
    background: #F3FAFF;
    position: relative;
    overflow: hidden;
}

    /* decorative blobs */
    .contact-section::before,
    .contact-section::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .contact-section::before {
        width: 560px;
        height: 560px;
        background: radial-gradient(circle, rgba(200,29,37,.06) 0%, transparent 70%);
        top: -180px;
        right: -140px;
    }

    .contact-section::after {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(26,108,160,.07) 0%, transparent 70%);
        bottom: 120px;
        left: -100px;
    }

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 52px;
    direction: rtl;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #C81D25;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(200,29,37,.07);
    border: 1px solid rgba(200,29,37,.16);
    animation: badgePop .55s ease both;
}

    .contact-eyebrow::before, .contact-eyebrow::after {
        content: '';
        width: 20px;
        height: 1.5px;
        background: #C81D25;
        border-radius: 1px;
        opacity: .6;
    }

.contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #0B3954;
    margin: 0 0 14px;
    letter-spacing: -.2px;
    line-height: 1.3;
}

    .contact-title span {
        color: inherit;
    }

    .contact-title::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #C81D25;
        border-radius: 0;
        margin: 14px auto 0;
        opacity: .9;
    }

.contact-subtitle {
    font-size: 16px;
    color: #5a7a8e;
    margin: 0;
    line-height: 1.8;
    max-width: 560px;
}

/* ── Stat Strip ── */
.contact-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    direction: rtl;
    flex-wrap: wrap;
}

.contact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 36px;
    position: relative;
    animation: fadeSlideUp .5s ease both;
}

    .contact-stat:nth-child(1) {
        animation-delay: .1s
    }

    .contact-stat:nth-child(2) {
        animation-delay: .18s
    }

    .contact-stat:nth-child(3) {
        animation-delay: .26s
    }

    .contact-stat:nth-child(4) {
        animation-delay: .34s
    }

    .contact-stat + .contact-stat::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(11,57,84,.12);
    }

.contact-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #0B3954;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -.5px;
}

    .contact-stat-num span {
        color: #C81D25;
    }

.contact-stat-label {
    font-size: 12px;
    color: #7a9aae;
    font-weight: 500;
    letter-spacing: .3px;
}

/* ── Cards Grid ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    direction: rtl;
    margin-bottom: 56px;
}

.contact-card {
    background: #fff;
    border-radius: 28px;
    border-bottom-left-radius: 0;
    border: 1px solid rgba(11,57,84,.10);
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform .4s var(--card-ease), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
    animation: contactCardIn .6s ease both;
}

    .contact-card:nth-child(1) {
        animation-delay: .10s
    }

    .contact-card:nth-child(2) {
        animation-delay: .20s
    }

    .contact-card:nth-child(3) {
        animation-delay: .30s
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--contact-accent, linear-gradient(90deg, #C81D25, #0B3954));
    }

    /* subtle bg pattern */
    .contact-card::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: var(--contact-circle-bg, rgba(200,29,37,.04));
        pointer-events: none;
        transition: transform .5s ease;
    }

    .contact-card:hover::after {
        transform: scale(1.5);
    }

    .contact-card:hover {
        transform: translateY(-8px) scale(1.012);
        box-shadow: var(--card-shadow-hover);
    }

.contact-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-icon-tile {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--icon-glass-bg), var(--contact-icon-tint, rgba(11,57,84,.06));
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: var(--icon-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--icon-glass-shadow);
    transition: transform .4s var(--card-ease), box-shadow .3s ease;
    overflow: hidden;
}

    .contact-icon-tile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,.45), transparent);
        border-radius: 18px 18px 0 0;
        pointer-events: none;
    }

.contact-card:hover .contact-icon-tile {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--icon-glass-shadow-hover);
}

.contact-icon-tile i {
    font-size: 26px;
    color: var(--contact-icon-color, #0B3954);
    opacity: .9;
    position: relative;
    z-index: 1;
}

.contact-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--contact-badge-color, #C81D25);
    background: var(--contact-badge-bg, rgba(200,29,37,.08));
    border-radius: 999px;
    padding: 5px 12px;
}

    .contact-card-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--contact-badge-color, #C81D25);
        animation: dotPulse 2s ease infinite;
    }

.contact-card-body {
    position: relative;
    z-index: 1;
    flex: 1;
    margin-bottom: 16px;
}

.contact-card-name {
    font-size: 20px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 0 8px;
    line-height: 1.3;
}

.contact-card-desc {
    font-size: 13.5px;
    color: #5a7a8e;
    line-height: 1.85;
    margin: 0 0 14px;
}

/* ── Feature list inside card ── */
.contact-card-features {
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .contact-card-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12.5px;
        color: #4a6a7e;
        direction: rtl;
    }

        .contact-card-features li::before {
            content: '';
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--contact-badge-bg, rgba(200,29,37,.08));
            border: 1.5px solid var(--contact-badge-color, #C81D25);
            flex-shrink: 0;
            position: relative;
        }

        .contact-card-features li::before {
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5l2.5 2.5 5-5' stroke='%23C81D25' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
        }

.contact-card.contact-blue .contact-card-features li::before {
    border-color: #1A6CA0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5l2.5 2.5 5-5' stroke='%231A6CA0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-card.contact-teal .contact-card-features li::before {
    border-color: #087E8B;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5l2.5 2.5 5-5' stroke='%23087E8B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── Phone display ── */
.contact-card-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    direction: ltr;
    background: rgba(11,57,84,.04);
    border: 1px solid rgba(11,57,84,.08);
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 14px;
    width: fit-content;
}

    .contact-card-phone svg {
        width: 15px;
        height: 15px;
        stroke: var(--contact-badge-color, #C81D25);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
        animation: phoneRing 3s ease 2s infinite;
    }

    .contact-card-phone span {
        font-size: 14px;
        font-weight: 700;
        color: #0B3954;
        letter-spacing: .5px;
        font-feature-settings: 'tnum';
    }

/* availability tag */
.contact-avail {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #1A8C5B;
    background: rgba(26,140,91,.08);
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 14px;
}

    .contact-avail::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #1A8C5B;
        animation: dotPulse 1.5s ease infinite;
    }

.contact-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(11,57,84,.08);
    text-decoration: none;
    cursor: pointer;
}

.contact-card-action {
    font-size: 13.5px;
    font-weight: 700;
    color: #0B3954;
    transition: color .3s ease;
}

.contact-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(11,57,84,.06);
    border: 1px solid rgba(11,57,84,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, border-color .3s ease, transform .3s var(--card-ease);
    flex-shrink: 0;
}

    .contact-card-arrow svg {
        width: 16px;
        height: 16px;
        stroke: #0B3954;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .3s ease;
    }

.contact-card:hover .contact-card-arrow {
    background: var(--contact-badge-color, #C81D25);
    border-color: var(--contact-badge-color, #C81D25);
    transform: translateX(-4px) scale(1.08);
}

    .contact-card:hover .contact-card-arrow svg {
        stroke: #fff;
    }

.contact-card:hover .contact-card-action {
    color: var(--contact-badge-color, #C81D25);
}

/* ── Color themes ── */
.contact-card.contact-red {
    --contact-accent: linear-gradient(90deg, #C81D25 0%, #9B1219 100%);
    --contact-badge-color: #C81D25;
    --contact-badge-bg: rgba(200,29,37,.08);
    --contact-icon-color: #C81D25;
    --contact-icon-tint: rgba(200,29,37,.06);
    --contact-circle-bg: rgba(200,29,37,.04);
}

.contact-card.contact-blue {
    --contact-accent: linear-gradient(90deg, #0B3954 0%, #1A6CA0 100%);
    --contact-badge-color: #1A6CA0;
    --contact-badge-bg: rgba(26,108,160,.08);
    --contact-icon-color: #1A6CA0;
    --contact-icon-tint: rgba(26,108,160,.06);
    --contact-circle-bg: rgba(26,108,160,.04);
}

.contact-card.contact-teal {
    --contact-accent: linear-gradient(90deg, #087E8B 0%, #065E69 100%);
    --contact-badge-color: #087E8B;
    --contact-badge-bg: rgba(8,126,139,.08);
    --contact-icon-color: #087E8B;
    --contact-icon-tint: rgba(8,126,139,.06);
    --contact-circle-bg: rgba(8,126,139,.04);
}

/* ============================================================
   BOTTOM BAND — FAQ + Map + Form
============================================================ */
.contact-bottom {
    background: #fff;
    border-top: 1px solid rgba(11,57,84,.07);
    padding: 64px 0 80px;
}

.contact-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
    box-sizing: border-box;
}

.contact-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    direction: rtl;
}

/* ── Section label shared ── */
.contact-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C81D25;
    margin-bottom: 20px;
    direction: rtl;
}

    .contact-section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(200,29,37,.18);
    }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-block {
    direction: rtl;
}

.faq-heading {
    font-size: 24px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 0 28px;
    line-height: 1.4;
}

    .faq-heading span {
        color: #C81D25;
    }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid rgba(11,57,84,.10);
    border-radius: 16px;
    background: #F8FCFF;
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease;
}

    .faq-item.open {
        border-color: rgba(200,29,37,.22);
        box-shadow: 0 6px 20px rgba(200,29,37,.07);
    }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: right;
    direction: rtl;
}

.faq-q-text {
    font-size: 14px;
    font-weight: 700;
    color: #0B3954;
    line-height: 1.5;
}

.faq-item.open .faq-q-text {
    color: #C81D25;
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(11,57,84,.06);
    border: 1px solid rgba(11,57,84,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s ease, transform .3s ease;
}

.faq-item.open .faq-q-icon {
    background: #C81D25;
    border-color: #C81D25;
    transform: rotate(45deg);
}

.faq-q-icon svg {
    width: 14px;
    height: 14px;
    stroke: #0B3954;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: stroke .3s ease;
}

.faq-item.open .faq-q-icon svg {
    stroke: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 20px 18px;
    animation: faqSlideDown .35s ease;
}

.faq-a-text {
    font-size: 13.5px;
    color: #5a7a8e;
    line-height: 1.85;
    margin: 0;
    direction: rtl;
}

/* ============================================================
   CONTACT FORM PANEL
============================================================ */
.contact-form-block {
    direction: rtl;
}

.contact-form-heading {
    font-size: 24px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 0 6px;
    line-height: 1.4;
}

.contact-form-sub {
    font-size: 14px;
    color: #7a9aae;
    margin: 0 0 28px;
    line-height: 1.7;
}

.cform {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cform-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cform-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #0B3954;
    letter-spacing: .2px;
}

.cform-input,
.cform-textarea,
.cform-select {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 16px;
    border: 1.5px solid rgba(11,57,84,.14);
    border-radius: 12px;
    background: #F8FCFF;
    font-size: 13.5px;
    color: #0B3954;
    font-family: inherit;
    direction: rtl;
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

    .cform-input:focus,
    .cform-textarea:focus,
    .cform-select:focus {
        border-color: rgba(200,29,37,.45);
        box-shadow: 0 0 0 3px rgba(200,29,37,.08);
        background: #fff;
    }

    .cform-input::placeholder,
    .cform-textarea::placeholder {
        color: #aabcca;
    }

.cform-textarea {
    resize: vertical;
    min-height: 110px;
}

.cform-select {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%230B3954' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 18px;
    padding-left: 38px;
    cursor: pointer;
}

.cform-radios {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    direction: rtl;
}

.cform-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

    .cform-radio input {
        display: none;
    }

.cform-radio-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1.5px solid rgba(11,57,84,.15);
    background: #F8FCFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #7a9aae;
    transition: all .25s ease;
    white-space: nowrap;
    padding: 0 10px;
    width: auto;
    min-width: 34px;
}

.cform-radio input:checked + .cform-radio-box {
    border-color: #C81D25;
    background: rgba(200,29,37,.07);
    color: #C81D25;
}

/* Submit btn */
.cform-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #C81D25 0%, #9B1219 100%);
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--card-ease), box-shadow .3s ease;
    box-shadow: 0 6px 20px rgba(200,29,37,.28);
    width: 100%;
    font-family: inherit;
    letter-spacing: .3px;
    animation: pulseGlow 2.5s ease infinite;
}

    .cform-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
        animation: shimmerSlide 2.8s ease infinite;
    }

    .cform-submit:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 12px 32px rgba(200,29,37,.38);
    }

    .cform-submit svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* ── Form success state ── */
.cform-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 12px;
    direction: rtl;
}

    .cform-success.visible {
        display: flex;
        animation: fadeSlideUp .5s ease;
    }

.cform-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(26,140,91,.12);
    border: 2px solid rgba(26,140,91,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

    .cform-success-icon svg {
        width: 30px;
        height: 30px;
        stroke: #1A8C5B;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.cform-success h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0B3954;
    margin: 0;
}

.cform-success p {
    font-size: 14px;
    color: #7a9aae;
    margin: 0;
    line-height: 1.7;
}

/* ============================================================
   MAP + INFO ROW
============================================================ */
.contact-map-row {
    padding: 0 0 72px;
    direction: rtl;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: stretch;
    direction: rtl;
}

/* Map embed */
.contact-map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(11,57,84,.10);
    box-shadow: var(--card-shadow);
    min-height: 340px;
    position: relative;
}

    .contact-map-wrap iframe {
        width: 100%;
        height: 100%;
        min-height: 340px;
        border: none;
        display: block;
    }

/* Info tiles */
.contact-info-tiles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-tile {
    background: #fff;
    border: 1px solid rgba(11,57,84,.10);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    direction: rtl;
    box-shadow: 0 4px 16px rgba(11,57,84,.05);
    transition: transform .35s var(--card-ease), box-shadow .3s ease;
    animation: contactCardIn .6s ease both;
}

    .contact-info-tile:nth-child(1) {
        animation-delay: .15s
    }

    .contact-info-tile:nth-child(2) {
        animation-delay: .25s
    }

    .contact-info-tile:nth-child(3) {
        animation-delay: .35s
    }

    .contact-info-tile:nth-child(4) {
        animation-delay: .45s
    }

    .contact-info-tile:hover {
        transform: translateX(-4px);
        box-shadow: 0 10px 28px rgba(11,57,84,.10);
    }

.info-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tile-bg, rgba(200,29,37,.08));
    border: 1px solid var(--tile-border, rgba(200,29,37,.15));
}

    .info-tile-icon svg {
        width: 20px;
        height: 20px;
        stroke: var(--tile-color, #C81D25);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.info-tile-body {
}

.info-tile-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aabcca;
    margin-bottom: 4px;
}

.info-tile-value {
    font-size: 14px;
    font-weight: 700;
    color: #0B3954;
    line-height: 1.5;
    direction: ltr;
    text-align: right;
}

    .info-tile-value a {
        color: inherit;
        text-decoration: none;
        transition: color .3s ease;
    }

        .info-tile-value a:hover {
            color: #C81D25;
        }

.info-tile-note {
    font-size: 11.5px;
    color: #7a9aae;
    margin-top: 2px;
    direction: rtl;
    text-align: right;
}

/* tile color variants */
.info-tile-red {
    --tile-bg: rgba(200,29,37,.08);
    --tile-border: rgba(200,29,37,.15);
    --tile-color: #C81D25;
}

.info-tile-blue {
    --tile-bg: rgba(26,108,160,.08);
    --tile-border: rgba(26,108,160,.15);
    --tile-color: #1A6CA0;
}

.info-tile-teal {
    --tile-bg: rgba(8,126,139,.08);
    --tile-border: rgba(8,126,139,.15);
    --tile-color: #087E8B;
}

.info-tile-green {
    --tile-bg: rgba(26,140,91,.08);
    --tile-border: rgba(26,140,91,.15);
    --tile-color: #1A8C5B;
}

/* ============================================================
   TRUST STRIP
============================================================ */
.contact-trust {
    background: linear-gradient(135deg, #0B3954 0%, #1A6CA0 100%);
    padding: 40px 0;
}

.contact-trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 72px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    direction: rtl;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
    animation: fadeSlideUp .5s ease both;
}

    .trust-item:nth-child(1) {
        animation-delay: .05s
    }

    .trust-item:nth-child(2) {
        animation-delay: .12s
    }

    .trust-item:nth-child(3) {
        animation-delay: .19s
    }

    .trust-item:nth-child(4) {
        animation-delay: .26s
    }

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .trust-icon svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.trust-text {
}

.trust-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 3px;
}

.trust-sub {
    font-size: 12px;
    color: rgba(255,255,255,.62);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.18);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .contact-bottom-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    :root {
        --section-gap: 56px;
        --section-pad-v: 52px;
    }

    .contact-inner,
    .contact-bottom-inner {
        padding: 0 32px;
    }

    .contact-trust-inner {
        padding: 0 32px;
    }

    .contact-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-title {
        font-size: 30px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --section-gap: 40px;
        --section-pad-v: 40px;
    }

    .contact-inner,
    .contact-bottom-inner {
        padding: 0 16px;
    }

    .contact-trust-inner {
        padding: 0 16px;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        padding: 22px;
    }

    .cform-row {
        grid-template-columns: 1fr;
    }

    .contact-stats {
        gap: 0;
    }

    .contact-stat {
        padding: 12px 20px;
    }

    .contact-stat-num {
        font-size: 22px;
    }

    .contact-trust-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ============================================================
   SERVICES INTRO DIVIDER (preserved)
============================================================ */
.services-intro {
    width: 100%;
    padding: 56px 0 8px;
    box-sizing: border-box;
    direction: rtl;
    text-align: center;
}

.services-intro-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.services-intro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #C81D25;
    margin-bottom: 16px;
}

    .services-intro-eyebrow::before,
    .services-intro-eyebrow::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 1px;
        background: rgba(200,29,37,.35);
    }

.services-intro-heading {
    font-size: 34px;
    font-weight: 800;
    color: #0B3954;
    margin: 0 0 14px;
    line-height: 1.45;
    letter-spacing: -.3px;
    direction: rtl;
}

.services-intro-sub {
    font-size: 15px;
    font-weight: 400;
    color: #7a9aae;
    line-height: 1.8;
    margin: 0;
    direction: rtl;
    max-width: 520px;
}

@media (max-width: 767px) {
    .services-intro {
        padding: 40px 0 32px;
    }

    .services-intro-heading {
        font-size: 24px;
    }

    .services-intro-sub {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .cards-section-inner {
        padding: 0 52px;
    }

    #custom-cards-slider .swiper-slide {
        height: 340px !important;
    }
}

@media (max-width: 767px) {
    .cards-section-inner {
        padding: 0 40px;
    }

    #custom-cards-slider .swiper-slide {
        height: 300px !important;
    }

    .custom-card-title {
        font-size: 14.5px;
    }

    .cards-btn-next {
        right: 4px;
    }

    .cards-btn-prev {
        left: 4px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    #custom-cards-slider .swiper-slide {
        height: auto !important;
        min-height: 340px;
        display: flex;
    }

    .custom-card-item {
        height: auto;
        min-height: 340px;
    }

    .custom-card-icon-wrap {
        height: 130px;
    }

    .custom-card-title {
        font-size: 14.5px;
        margin: 0 14px 6px;
        line-height: 1.5;
    }

    .custom-card-desc {
        font-size: 11.5px;
        margin: 0 14px 14px;
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
    }

    .custom-card-meta {
        margin: 14px 14px 6px;
    }
}
