/* 
    GMA Global Migration Bureau - Premium Design System
    Version: 1.0.0
*/

:root {
    /* Blue & Silver Brand Palette */
    --primary: #113A76;
    --secondary: #C0C0C0;
    /* Silver */
    --accent: #113A76;
    /* Blue Primary */
    --silver: #C0C0C0;
    --bg-dark: #0B0B0B;
    --bg-alt: #14161C;
    --text-main: #FFFFFF;
    --text-muted: #6B7280;
    --text-silver: #C0C0C0;
    --bg-light: #F4F6F9;

    --white: #FFFFFF;
    --border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --gradient-hero: linear-gradient(135deg, #0d0d0d 0%, #0d2149 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', 'Inter', -apple-system, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 96%;
    max-width: 1440px;
    margin: 0 auto;
}

/* ========== TWO-TIER HEADER ========== */

/* Sticky wrapper that holds both bars */
.gma-topbar, .gma-header { width: 100%; }
.gma-topbar { position: sticky; top: 0; z-index: 1001; }
.gma-header  { position: sticky; top: 42px; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.10); }

/* — TOP INFO BAR — */
.gma-topbar {
    background: #1a2436;
    height: 42px;
}
.gma-topbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.gma-topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}
.gma-tb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b0bec5;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.gma-tb-item:hover { color: #fff; }
.gma-tb-badge {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.gma-tb-badge--gold { background: #0e2f5e; }
.gma-tb-badge--teal { background: #0e7490; }
.gma-tb-badge--red  { background: #dc2626; }
.gma-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gma-social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: border-color 0.2s, color 0.2s;
}
.gma-social:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* — MAIN WHITE NAVBAR — */
.gma-header { background: #ffffff; }
.gma-navbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}
.gma-logo { display: flex; align-items: center; flex-shrink: 0; }
.gma-logo-img { height: 54px; width: auto; display: block; }

/* Nav list */
.gma-nav {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    gap: 0;
}
.gma-nav > li { position: relative; }
.gma-nav > li > a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 72px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    white-space: nowrap;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}
.gma-nav > li > a:hover,
.gma-nav > li:hover > a { color: #0e2f5e; }

/* Dropdown */
.gma-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    border: 1px solid #e8eaf0;
    border-top: 3px solid #0e2f5e;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    list-style: none;
    padding: 6px 0;
    z-index: 200;
}
.gma-nav li:hover > .gma-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gma-dropdown li a {
    display: block;
    padding: 10px 18px;
    font-size: 0.84rem;
    color: #374151;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f3f4f6;
}
.gma-dropdown li:last-child a { border-bottom: none; }
.gma-dropdown li a:hover { background: #EEF3FF; color: #0e2f5e; }
.gma-dd-title {
    padding: 8px 18px 3px;
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}
.gma-dd-divider {
    height: 1px;
    background: #e8eaf0;
    margin: 4px 0;
    pointer-events: none;
}

/* Book Consultation CTA */
.gma-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    background: #113A76;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(17,58,118,0.35);
}
.gma-book-btn:hover {
    background: #1a5299;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(17,58,118,0.45);
}

/* Hamburger */
.gma-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.gma-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s;
}
.gma-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gma-hamburger.active span:nth-child(2) { opacity: 0; }
.gma-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile ─── */
@media (max-width: 960px) {
    .gma-topbar { position: relative; top: auto; }
    .gma-header  { position: sticky; top: 0; }
    .gma-hamburger { display: flex; }
    .gma-book-btn  { display: none; }
    .gma-topbar-right { display: none; }

    .gma-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0 16px;
        border-top: 1px solid #e8eaf0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        justify-content: flex-start;
        z-index: 999;
    }
    .gma-nav.open { display: flex; }
    .gma-nav > li {
        position: static;
        border-bottom: 1px solid #f3f4f6;
    }
    .gma-nav > li > a {
        height: auto;
        padding: 13px 20px;
        font-size: 0.95rem;
    }
    .gma-dropdown {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f9fafb;
        display: none;
        min-width: unset;
        padding: 4px 0;
    }
    .gma-nav > li.open > .gma-dropdown { display: block; }
    .gma-dropdown li a { padding: 10px 20px 10px 36px !important; font-size: 0.88rem !important; border-bottom: none !important; }
    .gma-dd-title { padding-left: 36px !important; }
}

@media (max-width: 600px) {
    .gma-topbar-left .gma-tb-item:nth-child(2) { display: none; }
}

/* Legacy header/nav rules — kept for sub-page .page-hero gradient ref */
/* header has no extra styles needed — handled by .gma-topbar + .gma-header */
.logo-img { height: 44px; width: auto; display: block; }

/* Visa Hero Section */
.visa-hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(17,58,118,0.82) 0%, rgba(2,12,30,0.75) 50%, rgba(17,58,118,0.70) 100%),
        url('../img/hero-bg.png') center / cover no-repeat,
        url('../img/Ajman-Free-Zone-lp-bg-dt.webp') center / cover no-repeat;
    padding: clamp(44px, 5vw, 68px) 0;
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.visa-container {
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
    width: 96%;
    position: relative;
    z-index: 1;
}

/* ========== Hero Landmark Silhouettes ========== */
.hero-landmarks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-lm {
    position: absolute;
    bottom: 0;
    fill: rgba(147, 197, 253, 0.065);
    animation: floatLandmark 22s ease-in-out infinite;
    filter: blur(0.5px);
}

.hero-lm--bigben {
    right: 6%;
    height: 72%;
    max-height: 360px;
    animation-duration: 28s;
    animation-delay: -3s;
}

.hero-lm--burj {
    right: 22%;
    height: 88%;
    max-height: 440px;
    animation-duration: 22s;
    animation-delay: -10s;
    fill: rgba(186, 230, 253, 0.05);
}

.hero-lm--eu {
    right: 40%;
    height: 45%;
    max-height: 220px;
    bottom: auto;
    top: 8%;
    animation-duration: 32s;
    animation-delay: -18s;
    fill: rgba(147, 197, 253, 0.05);
}

/* Subtle star-glow accent top right */
.hero-lm--stars {
    right: 2%;
    top: 4%;
    bottom: auto;
    height: 160px;
    width: 160px;
    animation-duration: 25s;
    animation-delay: -6s;
    fill: rgba(186, 230, 253, 0.06);
}

@keyframes floatLandmark {
    0%   { transform: translateY(0px); }
    25%  { transform: translateY(-12px); }
    50%  { transform: translateY(-5px); }
    75%  { transform: translateY(-16px); }
    100% { transform: translateY(0px); }
}

.visa-left > * {
    opacity: 0;
    animation: hmFadeDown 0.7s ease forwards;
}
.visa-left > .visa-badge   { animation-delay: 0.10s; }
.visa-left > h1            { animation: hmSlideLeft 0.85s 0.35s ease forwards, hmGlowPulse 5s 2s ease-in-out infinite; }
.visa-left > .visa-sub     { animation-delay: 0.60s; }
.visa-left > .visa-benefits { animation-delay: 0.80s; }
.visa-left > div           { animation-delay: 1.00s; }

.visa-badge {
    color: #60A5FA;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.visa-badge::before {
    content: '';
    width: 9px;
    height: 9px;
    background: #60A5FA;
    border-radius: 50%;
    flex-shrink: 0;
    animation: hmDotPulse 2.2s 0.8s ease-in-out infinite;
}

.visa-hero h1 {
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 800;
    line-height: 1.10;
    margin-bottom: 18px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.visa-hero h1 span {
    display: block;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 38%, #E0F2FE 52%, #38BDF8 68%, #1D4ED8 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hmShimmer 3.5s 1s linear infinite;
}

.visa-sub {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin-bottom: 22px;
    max-width: 90%;
}

.visa-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.visa-benefits li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.visa-benefits li::before {
    content: "✓";
    color: #60A5FA;
    font-weight: bold;
    margin-right: 12px;
}

.visa-btn {
    background: #113A76;
    padding: 13px 28px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 58, 118, 0.45);
}

.visa-btn:hover {
    background: #1a5299;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(17, 58, 118, 0.65);
}

/* Hero Form Box */
.visa-form-box {
    background: rgba(15, 15, 15, 0.75);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    animation: fadeInRight 1s ease;
}

.visa-form-box h3 {
    margin-bottom: 18px;
    color: #93C5FD;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visa-form-box input,
.visa-form-box .form-textarea {
    width: 100%;
    padding: 10px 13px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
    display: block;
}

.visa-form-box input::placeholder,
.visa-form-box .form-textarea::placeholder {
    color: #9B1B2A;
    font-weight: 500;
}

.visa-form-box input:focus,
.visa-form-box .form-textarea:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Phone field with country code */
.phone-field-group {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1.5px solid #ddd;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.3s;
}

.phone-field-group:focus-within {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.phone-code-select {
    border: none;
    border-right: 1.5px solid #ddd;
    background: #ffffff;
    color: #1a1a1a;
    padding: 9px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
    min-width: 100px;
}

.phone-field-group input {
    border: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    flex: 1;
    background: #ffffff;
}

.visa-form-box .form-textarea {
    resize: none;
    margin-bottom: 12px;
}

.visa-form-box button {
    width: 100%;
    padding: 13px;
    background: #113A76;
    border: none;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(17, 58, 118, 0.45);
}

.visa-form-box button:hover {
    background: #1a5299;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(17, 58, 118, 0.65);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero heading effects */
@keyframes hmFadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hmSlideLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hmDotPulse {
    0%, 100% { transform: scale(1);   opacity: 1; box-shadow: 0 0 0 0   rgba(96,165,250,0.5); }
    50%       { transform: scale(1.2); opacity: 0.85; box-shadow: 0 0 0 6px rgba(96,165,250,0); }
}

@keyframes hmShimmer {
    0%   { background-position: -100% center; }
    100% { background-position:  200% center; }
}

@keyframes hmGlowPulse {
    0%, 100% { text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 0   rgba(59,130,246,0);    }
    50%       { text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 0 55px rgba(59,130,246,0.25); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .visa-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .visa-hero h1 {
        font-size: clamp(26px, 7vw, 40px);
    }

    .visa-sub {
        max-width: 100%;
    }

    .visa-benefits li {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .visa-hero {
        padding: 36px 0 32px;
    }

    .visa-left > div {
        flex-direction: column;
    }

    .visa-btn {
        width: 100%;
        text-align: center;
    }

    .visa-form-box {
        padding: 20px 16px;
    }
}

/* UK Hero Section */
.uk-hero-section {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    color: #fff;
    width: 100%;
}
.uk-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 60, 0.50);
    z-index: 0;
}
.uk-hero-content {
    position: relative;
    z-index: 1;
}

/* Sections Base */
section {
    padding: 80px 0;
    width: 100%;
}

section.alt-bg {
    background-color: var(--bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Service Detail Pages */
.service-hero-wrap {
    background:
        radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.18), transparent 38%),
        linear-gradient(135deg, #0d1220 0%, #0d2149 48%, #113a76 100%);
    color: #fff;
    padding: 52px 0 64px;
}

.service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.82rem;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.service-breadcrumb a {
    color: #cbd5e1;
}

.service-breadcrumb a:hover {
    color: #ffffff;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.service-tag {
    display: inline-flex;
    background: rgba(192, 192, 192, 0.16);
    color: #dbeafe;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.85px;
    font-weight: 700;
}

.service-hero-grid h1 {
    font-size: clamp(2rem, 4.5vw, 3.45rem);
    line-height: 1.08;
    margin-top: 14px;
    margin-bottom: 16px;
}

.service-hero-sub {
    color: #dbe8ff;
    font-size: 1.08rem;
    max-width: 760px;
    line-height: 1.75;
}

.service-hero-points {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-hero-points span {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #e2e8f0;
}

.service-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-hero-card h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
}

.service-hero-card p {
    color: #dbe8ff;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-content-wrap {
    background: linear-gradient(180deg, #0b0b0b 0%, #111827 50%, #0b0b0b 100%);
}

.service-layout {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 32px;
    align-items: start;
}

.service-main {
    display: grid;
    gap: 22px;
}

.service-panel {
    background: linear-gradient(155deg, rgba(17, 58, 118, 0.2) 0%, rgba(15, 23, 42, 0.86) 50%, rgba(10, 15, 28, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
}

.service-panel h2 {
    color: #f8fafc;
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.service-panel p {
    color: #cbd5e1;
    line-height: 1.78;
    margin-bottom: 12px;
}

.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-icon-card {
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(192, 192, 192, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #f8fafc;
}

.service-icon-card p {
    font-size: 0.9rem;
    margin: 0;
}

.service-list,
.service-steps,
.service-side-list,
.service-side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li,
.service-steps li,
.service-side-list li,
.service-side-links li {
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 12px;
}

.service-list li,
.service-side-list li {
    position: relative;
    padding-left: 20px;
}

.service-list li::before,
.service-side-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c0c0c0;
    position: absolute;
    left: 0;
    top: 9px;
}

.service-steps {
    counter-reset: process-step;
}

.service-steps li {
    position: relative;
    padding-left: 44px;
    min-height: 30px;
}

.service-steps li::before {
    counter-increment: process-step;
    content: counter(process-step);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background: #c0c0c0;
    font-weight: 700;
    font-size: 0.82rem;
    position: absolute;
    left: 0;
    top: 0;
}

.service-faqs details {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    background: rgba(2, 6, 23, 0.35);
}

.service-faqs summary {
    cursor: pointer;
    font-weight: 700;
    color: #f1f5f9;
}

.service-faqs p {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-side {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 14px;
}

.service-side-card {
    background: linear-gradient(155deg, rgba(17, 58, 118, 0.3) 0%, rgba(15, 23, 42, 0.92) 55%);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 14px;
    padding: 18px;
}

.service-side-card h3 {
    margin-bottom: 12px;
    font-size: 1.08rem;
}

.service-side-list strong {
    color: #f8fafc;
}

.service-side-links li {
    margin-bottom: 10px;
}

.service-side-links a {
    color: #dbeafe;
    font-size: 0.92rem;
}

.service-side-links a:hover {
    color: #ffffff;
}

.service-side-cta p {
    color: #cbd5e1;
    line-height: 1.68;
    margin-bottom: 14px;
}

.service-bottom-cta {
    background: linear-gradient(120deg, #113a76 0%, #1f2937 52%, #0f172a 100%);
    text-align: center;
}

.service-bottom-cta h2 {
    color: #fff;
    margin-bottom: 12px;
}

.service-bottom-cta p {
    color: #cbd5e1;
    margin-bottom: 22px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1100px) {
    .service-hero-grid,
    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-side {
        position: static;
    }

    .service-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .service-hero-wrap {
        padding: 38px 0 48px;
    }

    .service-panel,
    .service-hero-card,
    .service-side-card {
        padding: 16px;
    }

    .service-hero-sub {
        font-size: 1rem;
    }
}

/* Service Category Pages */
.cat-hero {
    background:
        radial-gradient(circle at 18% 24%, rgba(192, 192, 192, 0.15), transparent 40%),
        linear-gradient(135deg, #0b1020 0%, #113a76 52%, #1f2937 100%);
    color: #fff;
    padding: 54px 0 64px;
}

.cat-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #cbd5e1;
    font-size: 0.82rem;
    margin-bottom: 22px;
}

.cat-breadcrumb a {
    color: #dbeafe;
}

.cat-breadcrumb a:hover {
    color: #fff;
}

.cat-hero-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.cat-tag {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.cat-hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-top: 14px;
    margin-bottom: 14px;
    line-height: 1.08;
}

.cat-hero p {
    color: #dbeafe;
    line-height: 1.75;
}

.cat-side-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 20px;
}

.cat-side-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cat-kpi-row {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cat-kpi {
    background: rgba(2, 6, 23, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 10px;
}

.cat-kpi strong {
    display: block;
    font-size: 1rem;
}

.cat-kpi span {
    font-size: 0.78rem;
    color: #cbd5e1;
}

.cat-wrap {
    background: linear-gradient(180deg, #0b0b0b 0%, #111827 48%, #0b0b0b 100%);
}

.cat-section {
    margin-bottom: 22px;
}

.cat-section h2 {
    font-size: 1.65rem;
    margin-bottom: 12px;
}

.cat-section p {
    color: #cbd5e1;
    line-height: 1.75;
}

.cat-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.cat-service-card {
    background: linear-gradient(155deg, rgba(17, 58, 118, 0.25) 0%, rgba(15, 23, 42, 0.92) 52%);
    border: 1px solid rgba(192, 192, 192, 0.28);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.cat-service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cat-service-card p {
    color: #cbd5e1;
    line-height: 1.68;
    margin-bottom: 8px;
    font-size: 0.94rem;
}

.cat-service-card .cat-best-for {
    color: #e2e8f0;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.cat-service-card a {
    margin-top: auto;
    color: #dbeafe;
    font-weight: 700;
    font-size: 0.9rem;
}

.cat-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.cat-process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px;
}

.cat-process-card strong {
    display: block;
    margin-bottom: 8px;
    color: #f8fafc;
}

.cat-process-card p {
    margin: 0;
    font-size: 0.88rem;
}

.cat-faq details {
    background: rgba(2, 6, 23, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 9px;
}

.cat-faq summary {
    cursor: pointer;
    font-weight: 700;
}

.cat-faq p {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 0.94rem;
}

.cat-cta {
    background: linear-gradient(120deg, #113a76 0%, #1f2937 55%, #0f172a 100%);
    text-align: center;
}

.cat-cta h2 {
    margin-bottom: 10px;
}

.cat-cta p {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #cbd5e1;
}

@media (max-width: 1100px) {
    .cat-hero-grid {
        grid-template-columns: 1fr;
    }

    .cat-kpi-row {
        grid-template-columns: 1fr;
    }

    .cat-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-process {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .cat-card-grid,
    .cat-process {
        grid-template-columns: 1fr;
    }

    .cat-hero {
        padding: 42px 0 50px;
    }
}

/* Trust Strip */
.trust-strip {
    background-color: var(--secondary);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.trust-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item span::before {
    content: "★";
    color: var(--accent);
    margin-right: 8px;
}

/* Core Service Cards */
.core-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.core-card {
    background: var(--bg-alt);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.core-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-premium);
}

.core-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

/* Spotlight Boxes (legacy – kept for non-Europe sections) */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.spotlight-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    transition: background 0.3s;
}

.spotlight-box:hover {
    background: rgba(255, 255, 255, 0.07);
}

.spotlight-box h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.spotlight-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== Europe Services Section – Modern Two-Column List ===== */
.europe-services-section {
    position: relative;
    padding: clamp(60px, 8vw, 96px) 0;
    background:
        linear-gradient(135deg, rgba(8, 17, 31, 0.88) 0%, rgba(11, 22, 40, 0.84) 100%),
        url('../img/EU.png') center / cover no-repeat;
    overflow: hidden;
}

.europe-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.45;
    pointer-events: none;
}

.europe-services-section::after {
    content: "";
    position: absolute;
    right: -60px;
    top: 50%;
    width: min(34vw, 420px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    background: url('../img/EU.png') center / contain no-repeat;
    opacity: 0.08;
    pointer-events: none;
    filter: saturate(0.7);
}

.europe-services-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(290px, 0.92fr) minmax(0, 1.38fr);
    gap: 34px;
    align-items: stretch;
}

.europe-services-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.75), rgba(8, 16, 29, 0.85));
    border: 1px solid rgba(74, 144, 217, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.europe-services-intro::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.95), rgba(17, 58, 118, 0.82), transparent);
    background-size: 200% 100%;
    animation: gma-silver-sweep 6.5s linear infinite;
}

.europe-services-intro .section-eyebrow {
    color: #8dbcf0;
    margin-bottom: 14px;
}

.europe-services-intro .section-eyebrow::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    background: linear-gradient(90deg, rgba(74, 144, 217, 0.95), rgba(74, 144, 217, 0));
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.europe-services-intro h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.europe-services-intro p {
    color: #c3d3ea;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.europe-services-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.europe-services-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.14), rgba(17, 58, 118, 0.22));
    border: 1px solid rgba(192, 192, 192, 0.16);
    color: #edf4ff;
    font-size: 0.82rem;
    font-weight: 600;
}

.europe-services-highlights span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8dbcf0;
    box-shadow: 0 0 0 4px rgba(141, 188, 240, 0.14);
}

.europe-services-cta {
    align-self: flex-start;
    background: linear-gradient(135deg, #113A76 0%, #1a5299 100%);
    box-shadow: 0 12px 30px rgba(17, 58, 118, 0.32);
}

.europe-services-cta:hover {
    background: linear-gradient(135deg, #1a5299 0%, #2467bc 100%);
}

.europe-services-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(141, 188, 240, 0.12);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.europe-service-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 16px;
    background: linear-gradient(180deg, rgba(17, 58, 118, 0.16), rgba(8, 18, 34, 0.7));
    border: 1px solid rgba(141, 188, 240, 0.12);
    text-decoration: none;
    border-radius: 18px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.europe-service-item:first-child {
    border-top: 1px solid rgba(141, 188, 240, 0.12);
}

.europe-service-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(26, 82, 153, 0.3), rgba(10, 24, 44, 0.86));
    border-color: rgba(141, 188, 240, 0.24);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.europe-service-flag {
    font-size: 1.55rem;
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(192, 192, 192, 0.16);
}

.europe-service-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.europe-service-name {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 700;
}

.europe-service-tag {
    color: #aac1df;
    font-size: 0.84rem;
}

.europe-service-arrow {
    color: #8dbcf0;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(17, 58, 118, 0.26);
    border: 1px solid rgba(141, 188, 240, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.europe-service-item:hover .europe-service-arrow {
    transform: translateX(4px);
    background: rgba(26, 82, 153, 0.4);
    color: #ffffff;
}

@media (max-width: 900px) {
    .europe-services-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .europe-services-intro {
        padding: 24px;
    }

    .europe-services-list {
        padding: 14px;
    }

    .europe-services-section::after {
        width: min(48vw, 280px);
        right: -40px;
        top: 18%;
        transform: none;
    }
}

/* ===== EU Work Permits Section ===== */
.eu-permits-section {
    position: relative;
    padding: clamp(60px, 8vw, 96px) 0;
    background:
        linear-gradient(135deg, rgba(11, 22, 40, 0.90) 0%, rgba(9, 17, 29, 0.86) 100%),
        url('../img/visa-application-different-countries-arrangement.jpg') center / cover no-repeat;
    overflow: hidden;
}

.eu-permits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
    opacity: 0.4;
}

.eu-permits-section::after {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -30px;
    width: min(28vw, 340px);
    aspect-ratio: 1;
    background: url('../img/EU.png') center / contain no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.eu-permits-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 20px;
    padding: 22px 28px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.9), rgba(8, 16, 29, 0.94));
    border: 1px solid rgba(141, 188, 240, 0.14);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.eu-permits-header::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.95), rgba(17, 58, 118, 0.82), transparent);
    background-size: 200% 100%;
    animation: gma-silver-sweep 6.5s linear infinite;
}

.eu-permits-header h2 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.eu-permits-header p {
    color: #c3d3ea;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 580px;
}

.eu-permits-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, #113A76 0%, #1a5299 100%);
    box-shadow: 0 12px 30px rgba(17, 58, 118, 0.32);
}

.eu-permits-cta:hover {
    background: linear-gradient(135deg, #1a5299 0%, #2467bc 100%);
}

.eu-permits-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.eu-permit-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
    padding: 20px 18px 42px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(17, 58, 118, 0.12), rgba(8, 18, 34, 0.65));
    border: 1px solid rgba(141, 188, 240, 0.18);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.eu-permit-item::before {
    content: "";
    position: absolute;
    inset: auto -20px -30px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.18), rgba(74, 144, 217, 0));
    pointer-events: none;
}

.eu-permit-item::after {
    content: "→";
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(17, 58, 118, 0.26);
    border: 1px solid rgba(141, 188, 240, 0.18);
    color: #8dbcf0;
    font-size: 1rem;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.eu-permit-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, rgba(26, 82, 153, 0.3), rgba(10, 24, 44, 0.88));
    border-color: rgba(141, 188, 240, 0.24);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.eu-permit-item:hover::after {
    transform: translateX(4px);
    background: rgba(26, 82, 153, 0.42);
    color: #ffffff;
}

.eu-permit-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.eu-permit-flag {
    font-size: 1.3rem;
    line-height: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(192, 192, 192, 0.16);
}

.eu-permit-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #dbe8f8;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.18), rgba(17, 58, 118, 0.22));
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.18);
    white-space: nowrap;
}

.eu-permit-name {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.eu-permit-desc {
    color: #aac1df;
    font-size: 0.8rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .eu-permits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .eu-permits-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 16px;
    }
    .eu-permits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .eu-permits-header {
        padding: 16px 16px;
    }
    .eu-permits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .eu-permits-section::after {
        width: 180px;
        left: -50px;
    }
}

/* ===== UAE Business Setup Section ===== */
.uae-section {
    position: relative;
    padding: clamp(60px, 8vw, 96px) 0;
    background:
        linear-gradient(135deg, rgba(8, 17, 31, 0.88) 0%, rgba(11, 22, 40, 0.84) 100%),
        url('../img/UAE.jpg') center / cover no-repeat;
    overflow: hidden;
}

.uae-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(17, 58, 118, 0.34), transparent 28%),
        radial-gradient(circle at 84% 24%, rgba(74, 144, 217, 0.16), transparent 26%);
    pointer-events: none;
}

.uae-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.38;
    pointer-events: none;
}

.uae-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
    gap: 34px;
    align-items: stretch;
}

.uae-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.7), rgba(8, 16, 29, 0.8));
    border: 1px solid rgba(141, 188, 240, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.uae-content::before {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.95), rgba(17, 58, 118, 0.82), transparent);
    background-size: 200% 100%;
    animation: gma-silver-sweep 6.5s linear infinite;
}

.uae-content h2 {
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.uae-content p {
    color: #c3d3ea;
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.uae-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.uae-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.14), rgba(17, 58, 118, 0.22));
    border: 1px solid rgba(192, 192, 192, 0.16);
    color: #edf4ff;
    font-size: 0.82rem;
    font-weight: 600;
}

.uae-highlights span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8dbcf0;
    box-shadow: 0 0 0 4px rgba(141, 188, 240, 0.14);
}

.uae-services-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
    border: 1px solid rgba(141, 188, 240, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.uae-service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 16px;
    background: linear-gradient(180deg, rgba(17, 58, 118, 0.2), rgba(8, 18, 34, 0.6));
    border: 1px solid rgba(141, 188, 240, 0.15);
    text-decoration: none;
    border-radius: 18px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.uae-service-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(26, 82, 153, 0.3), rgba(10, 24, 44, 0.86));
    border-color: rgba(141, 188, 240, 0.24);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.uae-service-icon {
    font-size: 1.45rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.16), rgba(255,255,255,0.06));
    border: 1px solid rgba(192, 192, 192, 0.16);
}

.uae-service-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.uae-service-name {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 700;
}

.uae-service-desc {
    color: #aac1df;
    font-size: 0.84rem;
}

.uae-service-arrow {
    color: #8dbcf0;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(17, 58, 118, 0.26);
    border: 1px solid rgba(141, 188, 240, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.uae-service-item:hover .uae-service-arrow {
    transform: translateX(4px);
    background: rgba(26, 82, 153, 0.4);
    color: #ffffff;
}

.uae-services-cta {
    align-self: flex-start;
    margin-top: 24px;
    background: linear-gradient(135deg, #113A76 0%, #1a5299 100%);
    box-shadow: 0 12px 30px rgba(17, 58, 118, 0.32);
}

.uae-services-cta:hover {
    background: linear-gradient(135deg, #1a5299 0%, #2467bc 100%);
}

/* UAE visual block */
.uae-visual {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(17,58,118,0.18) 0%, rgba(255,255,255,0.03) 100%),
        linear-gradient(180deg, rgba(8,16,29,0.9), rgba(10,22,40,0.94));
    border: 1px solid rgba(141, 188, 240, 0.16);
    border-radius: 26px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.uae-visual::after {
    content: '';
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.95), rgba(17, 58, 118, 0.82), transparent);
    background-size: 200% 100%;
    animation: gma-silver-sweep 6.5s linear infinite;
}

.uae-visual::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.2), rgba(74, 144, 217, 0));
    pointer-events: none;
}

.uae-visual-badge {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f8fbff;
    font-size: 1rem;
    font-weight: 600;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(192,192,192,0.16), rgba(255,255,255,0.06));
    border: 1px solid rgba(192, 192, 192, 0.18);
}

.uae-visual-flag {
    font-size: 2rem;
}

.uae-stat-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.uae-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-left: none;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(192,192,192,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(192, 192, 192, 0.14);
}

@keyframes gma-silver-sweep {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.uae-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #8dbcf0;
    line-height: 1;
}

.uae-stat-label {
    font-size: 0.85rem;
    color: #c3d3ea;
}

@media (max-width: 960px) {
    .uae-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .uae-visual {
        order: -1;
    }
    .uae-stat-row {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .uae-stat {
        flex: 1 1 140px;
    }
    .uae-content {
        padding: 24px;
    }
    .uae-visual {
        padding: 26px 24px;
    }
}

/* ========== UK SERVICES SECTION (v2 – Sleek Bento) ========== */
.uk-services-section {
    position: relative;
    padding: clamp(60px, 8vw, 96px) 0;
    background:
        linear-gradient(135deg, rgba(5, 10, 25, 0.88) 0%, rgba(13, 15, 20, 0.84) 100%),
        url('../img/UK.jpg') center / cover no-repeat;
    overflow: hidden;
}

/* Subtle dot-grid background */
.uk-services-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* ── Wrapper: side-by-side ── */
.uks-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── LEFT PANEL ── */
@property --uks-panel-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes uks-panel-spin {
    to { --uks-panel-angle: 360deg; }
}

@keyframes uks-stat-bar-grow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

.uks-panel {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 36px 32px;
    background: rgba(17, 19, 24, 0.72);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: none;
    border-radius: 20px;
    overflow: visible;
    isolation: isolate;
}

/* Same spinning conic border as cards */
.uks-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: conic-gradient(
        from var(--uks-panel-angle),
        transparent 0%,
        transparent 30%,
        #0e2f5e 46%,
        #113A76 52%,
        #C0C0C0 56%,
        #113A76 60%,
        #0e2f5e 66%,
        transparent 78%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: uks-panel-spin 7s linear infinite;
    opacity: 0.45;
    pointer-events: none;
    z-index: -1;
}

/* Top accent bar */
.uks-panel::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #113A76 40%, #C0C0C0 60%, transparent);
    border-radius: 0 0 4px 4px;
    z-index: 2;
}

/* Decorative dot-mesh inside panel */
.uks-panel-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17,58,118,0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
    border-radius: 20px;
    overflow: hidden;
}

.uks-panel-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(17,58,118,0.14) 0%, transparent 68%);
    bottom: -60px;
    right: -60px;
    pointer-events: none;
    border-radius: 50%;
    z-index: -1;
}

/* Eyebrow pill */
.uks-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17,58,118,0.08);
    border: 1px solid rgba(17,58,118,0.22);
    padding: 5px 14px 5px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    align-self: flex-start;
}

.uks-eyebrow-flag {
    font-size: 1.05rem;
    line-height: 1;
}

/* Title + decorative underline */
.uks-panel-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uks-title-line {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #113A76, #C0C0C0);
}

.uks-panel h2 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--white);
}

.uks-panel h2 span {
    display: block;
    background: linear-gradient(90deg, #113A76 0%, #C0C0C0 45%, #113A76 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: uks-shimmer 4s linear infinite;
}

@keyframes uks-shimmer {
    from { background-position: 0% center; }
    to   { background-position: 200% center; }
}

.uks-panel > p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.75;
}

/* Stats */
.uks-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.uks-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    position: relative;
    transition: background 0.25s ease;
}

.uks-stat:hover {
    background: rgba(17,58,118,0.05);
}

.uks-stat + .uks-stat {
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Gold left-bar accent */
.uks-stat-bar {
    width: 3px;
    height: 28px;
    background: linear-gradient(180deg, #113A76, #C0C0C0);
    border-radius: 2px;
    flex-shrink: 0;
    transform-origin: top;
    animation: uks-stat-bar-grow 0.6s ease both;
}

.uks-stat:nth-child(1) .uks-stat-bar { animation-delay: 0.2s; }
.uks-stat:nth-child(2) .uks-stat-bar { animation-delay: 0.35s; }
.uks-stat:nth-child(3) .uks-stat-bar { animation-delay: 0.5s; }

.uks-stat strong {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.5px;
    flex: 1;
}

.uks-stat span {
    font-size: 0.72rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    text-align: right;
}

/* CTA Button — full width */
.uks-panel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #113A76 0%, #0e2f5e 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.83rem;
    letter-spacing: 0.5px;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 28px rgba(17,58,118,0.35);
    position: relative;
    overflow: hidden;
}

.uks-panel-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a5299 0%, #0e2f5e 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.uks-panel-btn:hover::before {
    opacity: 1;
}

.uks-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(17,58,118,0.55);
    gap: 14px;
    color: #fff;
}

.uks-panel-btn > * {
    position: relative;
    z-index: 1;
}

/* ── Animatable gradient angle ── */
@property --uks-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes uks-border-spin {
    to { --uks-angle: 360deg; }
}

@keyframes uks-card-enter {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RIGHT CARDS GRID ── */
.uks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.uks-card {
    position: relative;
    background: rgba(17, 19, 24, 0.72);
    border: none;
    border-radius: 18px;
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.35s ease;
    animation: uks-card-enter 0.55s ease both;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.uks-card:nth-child(1) { animation-delay: 0.05s; }
.uks-card:nth-child(2) { animation-delay: 0.15s; }
.uks-card:nth-child(3) { animation-delay: 0.25s; }
.uks-card:nth-child(4) { animation-delay: 0.35s; }

/* Spinning conic-gradient border — always on, dim at rest */
.uks-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: conic-gradient(
        from var(--uks-angle),
        transparent 0%,
        transparent 35%,
        #0e2f5e 48%,
        #113A76 53%,
        #C0C0C0 57%,
        #113A76 62%,
        #0e2f5e 68%,
        transparent 80%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: uks-border-spin 5s linear infinite;
    opacity: 0.35;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: -1;
}

.uks-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.6), 0 0 40px rgba(17,58,118,0.08);
}

.uks-card:hover::before {
    opacity: 1;
    animation-duration: 2.5s;
}

/* Ambient glow — bottom-right corner */
.uks-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(17,58,118,0.18) 0%, transparent 68%);
    bottom: -70px;
    right: -40px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.uks-card:hover .uks-card-glow {
    opacity: 1;
}

/* Faded number watermark */
.uks-num {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.035);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -2px;
    pointer-events: none;
    transition: color 0.35s ease;
    z-index: 0;
}

.uks-card:hover .uks-num {
    color: rgba(17,58,118,0.09);
}

.uks-card-inner {
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.uks-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.uks-card-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.uks-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.4);
}

.uks-card:hover .uks-icon {
    transform: scale(1.18);
}

.uks-tag {
    font-size: 0.63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: rgba(17,58,118,0.08);
    border: 1px solid rgba(17,58,118,0.2);
    padding: 3px 9px;
    border-radius: 50px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.uks-card:hover .uks-tag {
    background: rgba(17,58,118,0.16);
    border-color: rgba(17,58,118,0.45);
}

.uks-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
    min-width: 0;
}

.uks-card:hover h3 {
    color: #C0C0C0;
}

.uks-card-inner > p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.58;
    flex: 1;
}

.uks-features {
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 2px;
}

.uks-features li {
    font-size: 0.79rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease;
}

.uks-card:hover .uks-features li {
    color: #cbd5e1;
}

.uks-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
}

.uks-card:hover .uks-features li::before {
    box-shadow: 0 0 6px rgba(17,58,118,0.7);
}

.uks-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 14px;
    transition: gap 0.25s ease, color 0.25s ease;
    padding-top: 11px;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1;
}

.uks-card:hover .uks-cta {
    gap: 11px;
    color: #C0C0C0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .uks-wrapper { grid-template-columns: 1fr; }
    .uks-panel   { position: static; }
    .uks-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .uks-grid { grid-template-columns: 1fr; }
    .uk-services-section { padding: 60px 0; }
}

/* Why Us Icon Cards (legacy) */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.why-card {
    display: flex;
    gap: 20px;
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--accent);
    min-width: 50px;
}

.why-text h4 {
    margin-bottom: 12px;
    color: var(--white);
}

.why-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== Why Choose Us + Success Stories Two-Column ===== */
.why-stories-section {
    position: relative;
    padding: clamp(60px, 8vw, 96px) 0;
    background:
        linear-gradient(135deg, rgba(11, 22, 40, 0.92) 0%, rgba(8, 16, 29, 0.88) 100%),
        url('../img/pexels-ethanrwilkinson-5428705.jpg') center / cover no-repeat;
    overflow: hidden;
}

.why-stories-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.34;
    pointer-events: none;
}

.why-stories-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.why-stories-left,
.why-stories-right {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.9), rgba(8, 16, 29, 0.95));
    border: 1px solid rgba(141, 188, 240, 0.14);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.why-stories-left {
    background:
        radial-gradient(circle at 14% 14%, rgba(192, 192, 192, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.75), rgba(8, 16, 29, 0.85));
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.why-stories-right {
    background:
        radial-gradient(circle at 86% 18%, rgba(74, 144, 217, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(8, 16, 29, 0.8), rgba(10, 22, 40, 0.85));
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.why-stories-left::before,
.why-stories-right::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.95), rgba(17, 58, 118, 0.82), transparent);
    background-size: 200% 100%;
    animation: gma-silver-sweep 6.5s linear infinite;
}

.why-stories-left .section-eyebrow,
.why-stories-right .section-eyebrow {
    color: #8dbcf0;
    margin-bottom: 14px;
}

.why-stories-left .section-eyebrow::after,
.why-stories-right .section-eyebrow::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.95), rgba(74, 144, 217, 0));
}

.why-stories-left h2,
.why-stories-right h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.35rem);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.why-stories-sub {
    margin: 0 0 22px;
    color: #b7cae4;
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 62ch;
}

.ss-head-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.ss-head-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.14), rgba(17, 58, 118, 0.22));
    border: 1px solid rgba(192, 192, 192, 0.16);
    color: #edf4ff;
    font-size: 0.82rem;
    font-weight: 600;
}

.ss-head-meta span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8dbcf0;
    box-shadow: 0 0 0 4px rgba(141, 188, 240, 0.14);
}

/* Why list */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 16px;
    background: linear-gradient(180deg, rgba(17, 58, 118, 0.16), rgba(8, 18, 34, 0.72));
    border: 1px solid rgba(141, 188, 240, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    border-radius: 18px;
}

.why-list-item:first-child {
    border-top: 1px solid rgba(141, 188, 240, 0.12);
}

.why-list-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(26, 82, 153, 0.3), rgba(10, 24, 44, 0.86));
    border-color: rgba(192, 192, 192, 0.22);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.why-list-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 1px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.16), rgba(255,255,255,0.06));
    border: 1px solid rgba(192, 192, 192, 0.16);
}

.why-list-item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-list-item p {
    margin: 0;
    color: #aac1df;
    font-size: 0.87rem;
    line-height: 1.65;
}

/* ===== Success Stories Carousel ===== */
.ss-carousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8,16,29,0.96), rgba(10,22,40,0.94));
    border: 1px solid rgba(141, 188, 240, 0.14);
    box-shadow: 0 18px 52px rgba(0,0,0,0.36);
    user-select: none;
}

.ss-carousel::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.9), rgba(17, 58, 118, 0.82), transparent);
    background-size: 200% 100%;
    animation: gma-silver-sweep 6.5s linear infinite;
    z-index: 3;
}

.ss-carousel::after {
    content: "";
    position: absolute;
    inset: auto -60px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.18), rgba(74, 144, 217, 0));
    pointer-events: none;
    z-index: 1;
}

.ss-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background:
        linear-gradient(180deg, rgba(8,16,29,0.18), rgba(8,16,29,0.38)),
        radial-gradient(circle at 24% 18%, rgba(192, 192, 192, 0.08), transparent 22%);
}

.ss-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.94) translateX(22px);
    filter: blur(8px);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(.22,.68,0,1), filter 0.72s ease;
    pointer-events: none;
    z-index: 1;
}

.ss-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    filter: blur(0);
    pointer-events: auto;
    z-index: 2;
}

.ss-slide.is-enter-next {
    transform: translateX(58px) scale(0.94);
}

.ss-slide.is-enter-prev {
    transform: translateX(-58px) scale(0.94);
}

.ss-slide.is-exit-next {
    opacity: 0;
    transform: translateX(-44px) scale(0.96);
    filter: blur(10px);
}

.ss-slide.is-exit-prev {
    opacity: 0;
    transform: translateX(44px) scale(0.96);
    filter: blur(10px);
}

.ss-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: linear-gradient(180deg, rgba(8,16,29,0.5), rgba(8,16,29,0.1));
    transform: scale(1.03);
}

.ss-slide.active img {
    animation: ss-image-settle 4.2s ease forwards;
}

@keyframes ss-image-settle {
    0% { transform: scale(1.065); }
    100% { transform: scale(1); }
}

/* Arrows */
.ss-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(192,192,192,0.14), rgba(17,58,118,0.28));
    border: 1px solid rgba(192,192,192,0.18);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 10;
    line-height: 1;
}

.ss-arrow:hover {
    background: linear-gradient(135deg, rgba(192,192,192,0.24), rgba(26,82,153,0.5));
    border-color: rgba(192,192,192,0.3);
    color: #fff;
}

.ss-prev { left: 12px; }
.ss-next { right: 12px; }

/* Dots */
.ss-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 80%;
}

.ss-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(192,192,192,0.35);
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    padding: 0;
}

.ss-dot.active {
    background: #8dbcf0;
    transform: scale(1.35);
}

.ss-progress {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
    z-index: 10;
}

.ss-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(192,192,192,0.95), #8dbcf0 55%, #113A76 100%);
}

.ss-progress span.is-running {
    animation: ss-progress-run 4.2s linear forwards;
}

@keyframes ss-progress-run {
    from { width: 0; }
    to { width: 100%; }
}

/* Counter */
.ss-counter {
    text-align: right;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #94a3b8;
    letter-spacing: 0.06em;
}

.ss-counter span {
    color: #dbe8f8;
    font-weight: 700;
}

@media (max-width: 960px) {
    .why-stories-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-stories-left,
    .why-stories-right {
        padding: 24px;
    }

    .ss-head-meta {
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .ss-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
}

/* ===== Process + Contact Two-Column ===== */
.process-section {
    position: relative;
    padding: clamp(60px, 8vw, 96px) 0;
    background:
        linear-gradient(135deg, rgba(9, 17, 29, 0.92) 0%, rgba(12, 23, 39, 0.88) 100%),
        url('../img/rear-view-young-man-looking-river-thames.jpg') center / cover no-repeat;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.34;
    pointer-events: none;
}

.process-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.process-left,
.process-right {
    position: relative;
}

.process-left {
    padding: 28px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 14% 14%, rgba(192, 192, 192, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.75), rgba(8, 16, 29, 0.85));
    border: 1px solid rgba(141, 188, 240, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.process-left::before,
.process-form-box::before {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.95), rgba(17, 58, 118, 0.82), transparent);
    background-size: 200% 100%;
    animation: gma-silver-sweep 6.5s linear infinite;
}

.process-left .section-eyebrow,
.process-form-box .section-eyebrow {
    color: #8dbcf0;
}

.process-left .section-eyebrow::after,
.process-form-box .section-eyebrow::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.95), rgba(74, 144, 217, 0));
}

.process-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.process-intro {
    color: #b7cae4;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 14px;
}

.process-list::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(to bottom, rgba(192,192,192,0.9), rgba(17,58,118,0.85), rgba(17,58,118,0.15));
    opacity: 0.9;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 0;
}

.process-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(192,192,192,0.18), rgba(17,58,118,0.22));
    border: 1px solid rgba(192,192,192,0.22);
    color: #e8f0fb;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 10px 22px rgba(0,0,0,0.18);
}

.process-num::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #8dbcf0;
    box-shadow: 0 0 0 6px rgba(141, 188, 240, 0.12);
    opacity: 0;
}

.process-step-body {
    flex: 1;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(17, 58, 118, 0.16), rgba(8, 18, 34, 0.72));
    border: 1px solid rgba(141, 188, 240, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover .process-step-body {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(26, 82, 153, 0.3), rgba(10, 24, 44, 0.86));
    border-color: rgba(192, 192, 192, 0.22);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.process-step:hover .process-num::after {
    opacity: 1;
}

.process-step-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.process-step-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(192,192,192,0.18), rgba(17,58,118,0.14));
    border: 1px solid rgba(192,192,192,0.18);
    color: #dbe8f8;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.process-step-body strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.process-step-body p {
    margin: 0;
    color: #aac1df;
    font-size: 0.875rem;
    line-height: 1.65;
}

/* Process contact form */
.process-form-box {
    position: relative;
    background:
        radial-gradient(circle at 86% 18%, rgba(74, 144, 217, 0.15), transparent 24%),
        linear-gradient(180deg, rgba(8,16,29,0.8), rgba(10,22,40,0.85));
    border: 1px solid rgba(141,188,240,0.22);
    border-radius: 26px;
    padding: 30px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.process-form-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.process-form-sub {
    color: #b7cae4;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.process-form-box input,
.process-form-box select,
.process-form-box textarea {
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 12px;
    border-radius: 9px;
    border: 1.5px solid rgba(192,192,192,0.12);
    background: rgba(255,255,255,0.045);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
    transition: border-color 0.25s ease, background 0.25s ease;
    display: block;
    box-sizing: border-box;
}

.process-form-box input::placeholder,
.process-form-box textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.process-form-box select option {
    background: #1a1d24;
    color: var(--white);
}

.process-form-box input:focus,
.process-form-box select:focus,
.process-form-box textarea:focus {
    border-color: rgba(192,192,192,0.34);
    background: rgba(17,58,118,0.08);
}

.pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pf-row input {
    margin-bottom: 0;
}

.process-form-box .phone-field-group {
    background: rgba(255,255,255,0.045);
    border: 1.5px solid rgba(192,192,192,0.12);
    border-radius: 9px;
    margin-bottom: 12px;
}

.process-form-box .phone-field-group:focus-within {
    border-color: rgba(192,192,192,0.34);
    background: rgba(17,58,118,0.08);
    box-shadow: none;
}

.process-form-box .phone-code-select {
    background: transparent;
    border-right: 1.5px solid rgba(192,192,192,0.12);
    color: var(--white);
    padding: 10px 8px;
    font-size: 0.88rem;
}

.process-form-box .phone-field-group input {
    background: transparent;
    border: none !important;
    color: var(--white);
    margin-bottom: 0;
}

.process-form-box .phone-field-group input::placeholder {
    color: rgba(255,255,255,0.3);
}

.process-form-box textarea {
    resize: none;
    margin-bottom: 16px;
}

.process-form-box button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #113A76 0%, #1a5299 100%);
    border: none;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    color: #fff;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 26px rgba(17,58,118,0.32);
}

.process-form-box button:hover {
    background: linear-gradient(135deg, #1a5299 0%, #2467bc 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(17,58,118,0.45);
}

@media (max-width: 960px) {
    .process-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-left,
    .process-form-box {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .pf-row {
        grid-template-columns: 1fr;
    }
    .process-form-box {
        padding: 28px 20px;
    }
}

/* Destinations */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.dest-card {
    background: var(--bg-alt);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.dest-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.dest-card .flag {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.dest-card span {
    display: block;
    font-weight: 600;
    color: var(--white);
}

/* ===== FAQ Section – Two Column ===== */
.faq-section {
    position: relative;
    padding: 94px 0;
    background:
        radial-gradient(circle at 14% 16%, rgba(74, 144, 217, 0.2), transparent 38%),
        radial-gradient(circle at 86% 22%, rgba(192, 192, 192, 0.12), transparent 28%),
        linear-gradient(180deg, #0a111d 0%, #0b1525 100%);
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.45;
    pointer-events: none;
}

.faq-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.45fr);
    gap: 34px;
    align-items: start;
}

.faq-left {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(141, 188, 240, 0.22);
    background: linear-gradient(160deg, rgba(10, 23, 42, 0.92), rgba(7, 16, 31, 0.94));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.faq-left h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--white);
    margin: 8px 0 16px;
    line-height: 1.2;
}

.faq-left p {
    color: rgba(224, 234, 250, 0.76);
    font-size: 0.95rem;
    line-height: 1.74;
    margin-bottom: 20px;
}

.faq-cta-btn {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
}

.faq-stat-block {
    display: flex;
    gap: 26px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(141, 188, 240, 0.26);
}

.faq-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-stat-num {
    font-size: 2.1rem;
    font-weight: 800;
    color: #8dbcf0;
    line-height: 1;
}

.faq-stat-label {
    font-size: 0.82rem;
    color: rgba(204, 220, 244, 0.68);
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-topline {
    margin-bottom: 2px;
}

.faq-topline span {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(141, 188, 240, 0.14);
    border: 1px solid rgba(141, 188, 240, 0.34);
    color: #d4e6ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.faq-item2 {
    border: 1px solid rgba(141, 188, 240, 0.2);
    background: linear-gradient(150deg, rgba(10, 22, 40, 0.78), rgba(7, 16, 30, 0.78));
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item2:hover {
    border-color: rgba(141, 188, 240, 0.38);
    transform: translateY(-1px);
}

.faq-item2.open {
    border-color: rgba(141, 188, 240, 0.58);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease, background 0.2s ease;
}

.faq-q:hover {
    color: #a8d1ff;
}

.faq-item2.open .faq-q {
    color: #dcebff;
    background: rgba(141, 188, 240, 0.08);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(141, 188, 240, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 1.5px;
}

.faq-icon::after {
    width: 1.5px;
    height: 10px;
}

.faq-item2.open .faq-icon {
    background: #2f6cb5;
    border-color: #2f6cb5;
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-a p {
    padding: 0 18px 18px;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(223, 234, 250, 0.76);
    line-height: 1.72;
}

.faq-section.faq-animated .faq-left,
.faq-section.faq-animated .faq-item2 {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-section.faq-animated .faq-item2 {
    transition-delay: var(--faq-delay, 0ms);
}

.faq-section.faq-animated .faq-left.faq-visible,
.faq-section.faq-animated .faq-item2.faq-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .faq-section.faq-animated .faq-left,
    .faq-section.faq-animated .faq-item2 {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 900px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-left {
        padding: 22px;
    }

    .faq-stat-block {
        margin-top: 18px;
        padding-top: 18px;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(105deg, rgba(5,10,20,0.80) 0%, rgba(5,10,20,0.60) 55%, rgba(5,10,20,0.45) 100%),
                url('../img/Ajman-Free-Zone-lp-bg-dt.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 0;
    width: 100%;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Footer */
/* ===== MODERN FOOTER ===== */
.gma-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 8%, rgba(74, 144, 217, 0.2), transparent 36%),
        radial-gradient(circle at 88% 12%, rgba(192, 192, 192, 0.12), transparent 32%),
        linear-gradient(180deg, #050d1d 0%, #081326 52%, #040914 100%);
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    color: #f2f6ff;
    width: 100%;
}

.gma-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.45;
    pointer-events: none;
}

.gma-footer-glow {
    position: absolute;
    width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.24;
    pointer-events: none;
}

.gma-footer-glow--left {
    left: -150px;
    top: -150px;
    background: rgba(74, 144, 217, 0.48);
}

.gma-footer-glow--right {
    right: -140px;
    bottom: -120px;
    background: rgba(192, 192, 192, 0.36);
}

.gma-footer-cta-banner {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(141, 188, 240, 0.16);
}

.gma-footer-cta-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, rgba(141, 188, 240, 0), rgba(141, 188, 240, 0.45), rgba(141, 188, 240, 0));
}

.gma-footer-cta-inner {
    display: grid;
    grid-template-columns: 1.35fr auto;
    align-items: center;
    gap: 20px;
    padding: clamp(14px, 2vw, 22px) 0;
}

.gma-footer-cta-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(141, 188, 240, 0.16);
    border: 1px solid rgba(141, 188, 240, 0.3);
    color: #d3e5ff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gma-footer-cta-text h3 {
    margin-top: 8px;
    color: #ffffff;
    font-size: clamp(0.98rem, 1.45vw, 1.18rem);
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.gma-footer-cta-text p {
    margin-top: 5px;
    color: rgba(230, 238, 253, 0.76);
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: 60ch;
}

.gma-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.gma-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.25px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.gma-footer-cta-btn--primary {
    background: linear-gradient(145deg, #4a90d9, #1f5ea5);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(17, 58, 118, 0.34);
}

.gma-footer-cta-btn--primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.gma-footer-cta-btn--outline {
    border: 1px solid rgba(141, 188, 240, 0.35);
    color: #d3e5ff;
    background: rgba(8, 20, 37, 0.8);
}

.gma-footer-cta-btn--outline:hover {
    color: #ffffff;
    background: rgba(141, 188, 240, 0.15);
    transform: translateY(-2px);
}

.gma-footer-shell {
    position: relative;
    z-index: 1;
    padding: clamp(24px, 3vw, 34px) 0 0;
}

.gma-footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.8fr) minmax(260px, 1.05fr);
    grid-template-areas: "brand explore contact";
    align-items: stretch;
    gap: clamp(16px, 2vw, 24px);
    padding-bottom: clamp(30px, 3.5vw, 40px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.14);
}

.gma-footer-main > * {
    margin-top: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gma-footer-main > *:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
    border-color: rgba(141, 188, 240, 0.34);
}

.gma-footer-explore {
    grid-area: explore;
    min-width: 0;
    margin: 0;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(141, 188, 240, 0.18);
    background:
        radial-gradient(circle at 10% -20%, rgba(74, 144, 217, 0.16), transparent 45%),
        linear-gradient(152deg, rgba(7, 19, 36, 0.88), rgba(5, 12, 23, 0.8));
}

.gma-footer-brand-card {
    grid-area: brand;
    align-self: stretch;
    margin: 0;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(8, 22, 42, 0.95), rgba(6, 14, 28, 0.92));
    border: 1px solid rgba(141, 188, 240, 0.22);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
    display: flex;
    flex-direction: column;
}

.gma-footer-logo {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 255, 0.92));
    border: 1px solid rgba(141, 188, 240, 0.28);
}

.gma-footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.gma-footer-brand-desc {
    margin-top: 12px;
    color: rgba(230, 238, 253, 0.8);
    font-size: 0.84rem;
    line-height: 1.5;
}

.gma-footer-trust {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.gma-footer-trust span {
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid rgba(141, 188, 240, 0.3);
    background: rgba(9, 26, 50, 0.72);
    color: #d8e8ff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.gma-footer-social {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gma-footer-social-link {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(141, 188, 240, 0.22);
    background: rgba(10, 24, 45, 0.82);
    color: rgba(214, 229, 250, 0.84);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gma-footer-social-link:hover {
    background: rgba(141, 188, 240, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.gma-footer-sitemap {
    display: grid;
    grid-template-rows: auto auto;
    gap: 10px;
}

.gma-footer-sitemap-head {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(141, 188, 240, 0.16);
    background: linear-gradient(150deg, rgba(9, 22, 41, 0.86), rgba(6, 14, 28, 0.76));
}

.gma-footer-sitemap-label {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(141, 188, 240, 0.28);
    background: rgba(141, 188, 240, 0.12);
    color: #d8e9ff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.gma-footer-sitemap-head p {
    margin-top: 6px;
    color: rgba(221, 233, 251, 0.74);
    font-size: 0.79rem;
    line-height: 1.5;
}

.gma-footer-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gma-footer-col {
    padding: 12px 11px 10px;
    border-radius: 14px;
    border: 1px solid rgba(141, 188, 240, 0.15);
    background: linear-gradient(152deg, rgba(7, 18, 34, 0.9), rgba(5, 12, 24, 0.84));
}

.gma-footer-col h4 {
    color: #e4efff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(141, 188, 240, 0.22);
}

.gma-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gma-footer-col li + li {
    margin-top: 6px;
}

.gma-footer-col a {
    color: rgba(227, 236, 251, 0.82);
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.32;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gma-footer-col a::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(141, 188, 240, 0.66);
    box-shadow: 0 0 0 3px rgba(141, 188, 240, 0.12);
}

.gma-footer-col a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.gma-footer-contact-panel {
    grid-area: contact;
    border-radius: 16px;
    border: 1px solid rgba(141, 188, 240, 0.18);
    background:
        radial-gradient(circle at 90% -15%, rgba(74, 144, 217, 0.14), transparent 42%),
        linear-gradient(152deg, rgba(7, 19, 36, 0.9), rgba(5, 12, 23, 0.82));
    padding: 24px;
    align-self: stretch;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.gma-footer-contact-panel h4 {
    color: #e4efff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.gma-footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gma-footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px;
    border: 1px solid rgba(141, 188, 240, 0.18);
    border-radius: 10px;
    background: rgba(9, 22, 42, 0.66);
}

.gma-footer-contact-list svg {
    color: #7eb2ec;
    flex-shrink: 0;
}

.gma-footer-contact-list a {
    color: rgba(226, 236, 251, 0.88);
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.3;
}

.gma-footer-contact-list a:hover {
    color: #ffffff;
}

.gma-footer-offices {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(141, 188, 240, 0.18);
}

.gma-footer-offices h5 {
    margin: 0;
    color: rgba(213, 229, 249, 0.75);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gma-footer-office-row {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gma-footer-office-chip {
    padding: 7px;
    border-radius: 10px;
    border: 1px solid rgba(141, 188, 240, 0.16);
    background: rgba(9, 22, 42, 0.64);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.gma-footer-office-chip svg {
    color: #7eb2ec;
    margin-top: 2px;
    flex-shrink: 0;
}

.gma-footer-office-chip strong {
    display: block;
    color: rgba(229, 238, 252, 0.94);
    font-size: 0.72rem;
    line-height: 1.35;
}

.gma-footer-office-chip span {
    display: block;
    color: rgba(213, 228, 248, 0.66);
    font-size: 0.67rem;
    margin-top: 2px;
    line-height: 1.35;
}

.gma-footer-bottom {
    margin-top: 2px;
    padding: 11px 0 13px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(205, 219, 243, 0.72);
    font-size: 0.76rem;
}

.gma-footer-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    transform: translateY(-10px);
    background: linear-gradient(90deg, rgba(141, 188, 240, 0), rgba(141, 188, 240, 0.32), rgba(141, 188, 240, 0));
}

.gma-footer-legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gma-footer-legal a {
    color: rgba(205, 219, 243, 0.72);
    text-decoration: none;
}

.gma-footer-legal a:hover {
    color: #ffffff;
}

.gma-footer-legal-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(205, 219, 243, 0.42);
}

.gma-footer-totop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid rgba(141, 188, 240, 0.24);
    background: rgba(9, 22, 42, 0.78);
    color: rgba(213, 229, 249, 0.78);
    transition: all 0.2s ease;
}

.gma-footer-totop:hover {
    color: #ffffff;
    background: rgba(141, 188, 240, 0.22);
    transform: translateY(-2px);
}

@media (max-width: 1260px) {
    .gma-footer-main {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand contact"
            "explore explore";
    }

    .gma-footer-brand-card {
        padding: 20px;
    }

    .gma-footer-groups {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .gma-footer-main {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "explore"
            "contact";
    }

    .gma-footer-cta-inner {
        grid-template-columns: 1fr;
    }

    .gma-footer-cta-actions {
        justify-content: flex-start;
        gap: 8px;
    }

    .gma-footer-groups {
        grid-template-columns: 1fr;
    }

    .gma-footer-contact-list {
        grid-template-columns: 1fr;
    }

    .gma-footer-main > *:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .gma-footer-shell {
        padding-top: 22px;
    }

    .gma-footer-brand-card,
    .gma-footer-col,
    .gma-footer-contact-panel {
        padding: 16px;
    }

    .gma-footer-sitemap-head {
        padding: 12px;
    }

    .gma-footer-cta-actions {
        width: 100%;
    }

    .gma-footer-cta-btn {
        width: 100%;
    }

    .gma-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent);
}

.card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ───────────────────────────────────────
   Page Hero (sub-pages & hub pages)
─────────────────────────────────────── */
.page-hero {
    background: linear-gradient(rgba(11,11,11,0.82), rgba(11,11,11,0.91)),
                url('../img/Ajman-Free-Zone-lp-bg-dt.webp') center/cover no-repeat;
    padding: 90px 0;
    color: var(--white);
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 1.1rem;
    color: #CBD5E1;
    max-width: 680px;
    line-height: 1.75;
}

.page-hero .breadcrumb {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.page-hero .breadcrumb a {
    color: var(--accent);
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

/* ───────────────────────────────────────
   Service Page Sections
─────────────────────────────────────── */
.service-overview {
    background: var(--bg-dark);
    padding: 80px 0;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 35px;
}

.sidebar-box h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.sidebar-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-related {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.sidebar-related h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.sidebar-related li {
    margin-bottom: 10px;
}

.sidebar-related li a {
    color: var(--accent);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.sidebar-related li a:hover {
    color: var(--white);
}

/* Who it's for - tag chips */
.who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.who-tag {
    background: rgba(17,58,118,0.12);
    border: 1px solid rgba(17,58,118,0.3);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 28px 24px;
    transition: border-color 0.3s;
}

.benefit-item:hover {
    border-left-color: var(--secondary);
}

.benefit-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Prose content styles */
.prose h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
}

.prose p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}

.prose ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

.prose ul li {
    margin-bottom: 0.5rem;
}

/* ───────────────────────────────────────
   Button Styles (unified)
─────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #1a5299;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17,58,118,0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 960px) {
    .page-hero h1 {
        font-size: 1.9rem;
    }

    .service-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* ───────────────────────────────────────
   Floating Contact Widgets
─────────────────────────────────────── */
.gma-fixed-contact {
    position: fixed;
    right: 25px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gma-fixed-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gma-fixed-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.gma-fixed-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.gma-fixed-phone {
    background: linear-gradient(135deg, #4a90d9, #113A76);
}

.gma-fixed-email {
    background: linear-gradient(135deg, #f1f5f9, #94a3b8);
    color: #0f172a;
}

/* Mobile Bottom Action Bar */
.gma-mobile-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    border-top: 1px solid rgba(141, 188, 240, 0.2);
    padding: 10px 15px env(safe-area-inset-bottom);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gma-mobile-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 5px;
    border-radius: 12px;
    color: #d3e5ff;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(141, 188, 240, 0.08);
    border: 1px solid rgba(141, 188, 240, 0.15);
    transition: all 0.2s ease;
}

.gma-mobile-btn:active {
    transform: scale(0.95);
    background: rgba(141, 188, 240, 0.15);
}

.gma-mobile-btn svg {
    margin-bottom: 2px;
}

.gma-mobile-btn--whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

@media (max-width: 960px) {
    .gma-fixed-contact {
        display: none;
    }
    
    .gma-mobile-actions {
        display: grid;
    }
    
    /* Push footer/content up to avoid overlap */
    .gma-footer {
        padding-bottom: 90px;
    }
}


/* ───────────────────────────────────────
   Floating Social Media (Left Side)
─────────────────────────────────────── */
.gma-fixed-socials {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gma-fixed-social {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(10, 20, 40, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(141, 188, 240, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gma-fixed-social:hover {
    transform: translateX(5px);
    background: rgba(141, 188, 240, 0.2);
    border-color: rgba(141, 188, 240, 0.4);
    color: #fff;
}

.gma-fixed-ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.gma-fixed-fb:hover { background: #1877F2; }
.gma-fixed-ln:hover { background: #0077b5; }

/* ───────────────────────────────────────
   WhatsApp Tooltip & Wrap
─────────────────────────────────────── */
.gma-fixed-wa-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.gma-fixed-wa-tooltip {
    position: absolute;
    right: 70px;
    background: #ffffff;
    color: #0d121e;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    pointer-events: none;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.gma-fixed-wa-tooltip b {
    color: #25D366;
    display: block;
}

.gma-fixed-wa-wrap:hover .gma-fixed-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.gma-fixed-wa-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
}

@media (max-width: 960px) {
    .gma-fixed-socials {
        display: none;
    }
}



/* Final CTA Mobile Fix */
@media (max-width: 768px) {
    .final-cta {
        padding: 60px 20px;
        background-attachment: scroll;
    }
    .final-cta h2 {
        font-size: 1.85rem;
        margin-bottom: 20px;
    }
    .final-cta p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
}
