/* ========================================
   Our Recruitment Services - Frogg Recruitment
   ======================================== */

:root {
    --primary-500: #1662ed;
    --primary-600: #1451c7;
    --primary-700: #1e3a8a;
    --primary-900: #0f1e52;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --ink-900: #0b1534;
    --ink-800: #101d42;
    --ink-700: #162350;
    --gray-50: #f8fafc;
    --gray-100: #eef2f7;
    --gray-200: #dce5f3;
    --gray-300: #c4d1e5;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #0f172a;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 36px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 56px rgba(15, 23, 42, 0.14);
    --shadow-blue: 0 12px 28px rgba(22, 98, 237, 0.22);
    --gradient-primary: linear-gradient(135deg, #1662ed 0%, #1e3a8a 100%);
    --gradient-dark: linear-gradient(160deg, #0b1534 0%, #101d42 40%, #162350 100%);
    --max-width: 1240px;
    --section-gap: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
    font-family: "Inter", sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main { padding-top: 150px; }

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-md);
    border: 0;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 28px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(22, 98, 237, 0.32); }
.btn-outline {
    background: var(--white);
    color: var(--primary-500);
    border: 2px solid var(--primary-100);
}
.btn-outline:hover { border-color: var(--primary-500); transform: translateY(-2px); }

/* --- Section Badge (Global) --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(22,98,237,.2);
}
.section-badge.light {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: none;
}

/* --- Gradient Accent Text --- */
.gradient-accent {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-accent-light {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   PAGE HERO — GLOBAL
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 60px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.35;
    transform: scale(1.08);
    filter: saturate(0.5);
}
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,50,.9) 0%, rgba(20,40,100,.82) 50%, rgba(10,25,60,.9) 100%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(22,98,237,.12);
}
.hero-shape--1 {
    width: 420px; height: 420px;
    top: -80px; right: -80px;
    animation: shapeFloat1 28s ease-in-out infinite;
}
.hero-shape--2 {
    width: 220px; height: 220px;
    bottom: 8%; left: -40px;
    border-color: rgba(59,130,246,.1);
    animation: shapeFloat2 22s ease-in-out infinite;
}
.hero-shape--3 {
    width: 100px; height: 100px;
    top: 35%; right: 12%;
    border-color: rgba(22,98,237,.08);
    animation: shapeFloat3 18s ease-in-out infinite;
}
@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -25px) rotate(6deg); }
    66% { transform: translate(-15px, 18px) rotate(-4deg); }
}
@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-12px, 18px) rotate(-5deg); }
    66% { transform: translate(18px, -12px) rotate(4deg); }
}
@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -15px) scale(1.1); }
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(22,98,237,.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(30,58,138,.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #ffffffd9;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(0,0,0,.3);
    animation: fadeInUp .7s ease both;
}
.breadcrumb a {
    color: #ffffffd9;
    text-decoration: none;
    transition: color .25s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: .3; }

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 30px rgba(0,0,0,.4);
    animation: fadeInUp .7s ease .1s both;
}

.gradient-text {
    color: var(--wdtPrimaryColor, #1268fb);
       background: linear-gradient(135deg, #1662ed 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     background-clip: text;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #ffffffd9;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    text-shadow: 0 1px 6px rgba(0,0,0,.2);
    animation: fadeInUp .7s ease .15s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   HOW WE CAN HELP — ADVANCED
   ======================================== */
.help-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}
.help-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22,98,237,.05) 0%, transparent 70%);
    pointer-events: none;
}
.help-section .container { position: relative; z-index: 1; }

.help-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.help-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--ink-900);
}
.help-lead {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.help-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s, border-color 0.35s;
}
.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.35s;
}
.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(22,98,237,.12), 0 8px 16px rgba(22,98,237,.06);
    border-color: var(--primary-100);
}
.help-card:hover::before {
    opacity: 1;
}

.help-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.help-card-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.2;
    transition: opacity 0.35s;
}
.help-card:hover .help-card-number {
    opacity: 0.45;
}
.help-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s, color 0.35s, transform 0.35s;
}
.help-card:hover .help-card-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.05) rotate(-3deg);
}
.help-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--ink-900);
}
.help-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}

/* Staggered entrance */
.help-card {
    opacity: 0;
    animation: cardFadeIn 0.6s cubic-bezier(.22,1,.36,1) forwards;
}
.help-card:nth-child(1) { animation-delay: 0.05s; }
.help-card:nth-child(2) { animation-delay: 0.10s; }
.help-card:nth-child(3) { animation-delay: 0.15s; }
.help-card:nth-child(4) { animation-delay: 0.20s; }
.help-card:nth-child(5) { animation-delay: 0.25s; }
.help-card:nth-child(6) { animation-delay: 0.30s; }

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(22,98,237,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(59,130,246,.1) 0%, transparent 50%);
    pointer-events: none;
}
.stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(180deg, #fff 30%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    color: #a8bdd9;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.15), transparent);
    flex-shrink: 0;
}

/* ========================================
   INDUSTRIES — DARK (ADVANCED)
   ======================================== */
.industries-section {
    background:
        linear-gradient(to bottom, rgba(10,20,50,.94), rgba(10,20,50,.97)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.industries-section::before,
.industries-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.industries-section::before {
    width: 500px; height: 500px;
    top: -120px; left: -100px;
    background: rgba(22,98,237,.12);
}
.industries-section::after {
    width: 420px; height: 420px;
    bottom: -100px; right: -60px;
    background: rgba(99,102,241,.10);
}
.industries-section .container { position: relative; z-index: 1; }

.industries-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}
.industries-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #fff;
}
.industries-lead {
    font-size: 1.05rem;
    color: #a8bdd9;
    margin: 0;
    line-height: 1.7;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    position: relative;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    padding: 32px 24px 28px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s, border-color 0.4s;
    overflow: hidden;
    opacity: 0;
    animation: indCardIn 0.6s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
}
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(22,98,237,.5), rgba(99,102,241,.4), rgba(22,98,237,.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}
.industry-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 50% 0%, rgba(22,98,237,.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22,98,237,.25);
    box-shadow: 0 20px 50px -12px rgba(22,98,237,.25), 0 0 0 1px rgba(22,98,237,.08);
}
.industry-card:hover::before { opacity: 1; }
.industry-card:hover::after { opacity: 1; }

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(22,98,237,.15), rgba(99,102,241,.10));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #60a5fa;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), background 0.3s;
}
.industry-card:hover .industry-icon {
    transform: scale(1.1) translateY(-2px);
    background: linear-gradient(135deg, rgba(22,98,237,.25), rgba(99,102,241,.18));
}

.industry-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}
.industry-card p {
    font-size: 0.85rem;
    color: #7e94b8;
    margin: 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

@keyframes indCardIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   CTA DUAL-CARD BANNER (GLOBAL)
   ======================================== */
.about-cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 960px;
    margin: -40px auto 0;
    position: relative;
    z-index: 2;
    gap: 24px;
    padding: 0 24px;
}
.cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    text-align: center;
    transition: transform .3s, box-shadow .3s, background .4s, border-color .4s;
}
.cta-col .cta-btn { margin-top: auto; }
.cta-col:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(22,98,237,.35);
    border-color: rgba(255,255,255,.25);
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}
.cta-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}
.cta-col:hover h3 { color: #fff; }
.cta-col p {
    font-size: .95rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    margin: 0 0 20px;
}
.cta-col:hover p { color: rgba(255,255,255,.85); }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1e3a8a;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s, background .3s, color .3s;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22,98,237,.35);
}
.cta-col:hover .cta-btn {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.cta-btn .btn-arrow { transition: transform .2s; }
.cta-btn:hover .btn-arrow { transform: translateX(4px); }

/* ========================================
   CONTACT — ADVANCED
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--gray-50);
}
.contact-section .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.contact-section .section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--ink-900);
}
.contact-section .section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: var(--radius-xl);
    padding: 32px 24px 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 32px rgba(22,98,237,.06);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
    text-align: center;
}
.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.06), 0 20px 60px rgba(22,98,237,.12);
    transform: translateY(-6px);
    border-color: rgba(22,98,237,.15);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(22,98,237,.2);
    transition: transform 0.4s, box-shadow 0.4s;
}
.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 10px 28px rgba(22,98,237,.3);
}

.contact-card h3 {
    margin: 0 0 14px;
    font-size: 0.95rem;
    color: var(--ink-900);
    line-height: 1.4;
}
.contact-card p {
    margin: 0 0 4px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}
.contact-card a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 600;
}
.contact-card a:hover { text-decoration: underline; }

/* ========================================
   TOPBAR & HEADER OVERRIDES
   ======================================== */
.wdt-topbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100000;
    background: #031543;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.topbar-inner {
    width: min(var(--max-width), calc(100% - 2rem));
    min-height: 42px;
    margin-inline: auto;
    display: flex; align-items: center;
}
.wdt-topbar-contact { width: 100%; justify-content: space-between; }
.wdt-topbar-contact-item { color: #d7e3ff; font-size: 13px; text-decoration: none; }
.header-inner {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
    min-height: 84px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.frogg-header {
    top: 42px;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}
.our-services-page .wdt-nav-menu .elementor-nav-menu > li > a,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li > span.elementor-item--nolink { color: var(--ink-900, #0b1534) !important; }
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.menu-item-has-children > a::after,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.menu-item-has-children > span.elementor-item--nolink::after { color: var(--gray-500, #6b7280) !important; }
.our-services-page .wdt-nav-menu .elementor-nav-menu > li:hover > a,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li:hover > span.elementor-item--nolink,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > a,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > span.elementor-item--nolink { color: #fff !important; }
.our-services-page .wdt-nav-menu .elementor-nav-menu > li:hover > a::before,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li:hover > span.elementor-item--nolink::before,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > a::before,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item > span.elementor-item--nolink::before { opacity: 1 !important; }
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.menu-item-has-children:hover > a::after,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.menu-item-has-children:hover > span.elementor-item--nolink::after,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item.menu-item-has-children > a::after,
.our-services-page .wdt-nav-menu .elementor-nav-menu > li.current-menu-item.menu-item-has-children > span.elementor-item--nolink::after { color: #fff !important; }
.our-services-page .wdt-nav-menu .elementor-nav-menu--dropdown {
    background: #ffffff !important;
    border: 1px solid rgba(18, 104, 251, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(18, 104, 251, 0.06) !important;
}
.our-services-page .wdt-nav-menu .elementor-nav-menu--dropdown a { color: var(--ink-900, #0b1534) !important; }
.our-services-page .wdt-nav-menu .elementor-nav-menu--dropdown a:hover { color: #fff !important; }
.our-services-page .frogg-btn-outline .elementor-button { border-color: var(--primary-500, #1662ed) !important; color: var(--primary-500, #1662ed) !important; }
.our-services-page .frogg-btn-outline .elementor-button:hover { background: rgba(22, 98, 237, 0.08) !important; }
.our-services-page .wdt-toggle-line { background: var(--ink-900, #0b1534) !important; }
.brand img { height: 44px; width: auto; }
.wdt-nav-menu .elementor-nav-menu { margin: 0; padding: 0; list-style: none; }
.wdt-nav-menu .elementor-nav-menu > li { position: relative; }
.wdt-nav-menu .elementor-nav-menu--dropdown {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 260px;
    list-style: none; margin: 0; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: 0.25s ease;
}
.wdt-nav-menu .menu-item-has-children:hover .elementor-nav-menu--dropdown,
.wdt-nav-menu .menu-item-has-children:focus-within .elementor-nav-menu--dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .elementor-button { display: inline-flex; align-items: center; justify-content: center; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .wdt-topbar { display: none; }
    .frogg-header { top: 0; }
    .header-actions { display: none; }
    .wdt-nav-menu { display: none !important; }
    .wdt-mobile-toggle { display: flex !important; }
    .page-hero { padding: 140px 20px 60px; }
    .help-section, .industries-section { padding: 72px 0; }
    .help-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-section { padding: 0 0 72px; }
    .stats-inner { gap: 32px; }
}
@media (max-width: 767px) {
    main { padding-top: 100px; }
    .page-hero { padding: 120px 16px 48px; }
    .help-grid { grid-template-columns: 1fr; gap: 20px; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-cta-banner {
        grid-template-columns: 1fr;
        padding: 40px 16px;
    }
    .cta-col { padding: 28px 24px; }
    .stats-inner {
        flex-wrap: wrap;
        gap: 24px;
    }
    .stat-divider { display: none; }
    .stat-item { flex: 1 1 40%; }
    .stats-bar { padding: 36px 24px; }
    .contact-section::before { margin-bottom: 48px; }
}
@media (max-width: 480px) {
    .industries-grid { grid-template-columns: 1fr; }
}