/* ================================================= */
/* ============ CODE STARTS HERE =================== */
/* ================================================= */

/* src/styles/03-components.css */

/* =========================
   1. MASTER HEADER LAYOUT
   ========================= */
.header-evmt {
    margin: 0;
    padding: 0;
    /* Fixed position to ensure it floats correctly */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    /* High Z-Index to sit above 3D Globes */
    z-index: 10000;
    /* Initial State: Solid Premium Gradient */
    background: linear-gradient(152deg, #050810 0%, #15233e 50%, #050810 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- PREMIUM SCROLLED STATE (Frosted Glass) --- */
/* --- PREMIUM SCROLLED STATE (Frosted Glass) --- */
.header-evmt.scrolled {
    height: 75px;
    /* Light Glass Effect */
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* GLOBAL CANVAS (Desktop Header) */
#evmt-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    mix-blend-mode: screen;
    overflow: hidden;
}

.evmt-header-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* =========================
   2. LOGO
   ========================= */
.evmt-logo {
    position: relative;
    z-index: 10002;
    line-height: 0;
}

.evmt-logo img {
    height: 38px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s;
}

.evmt-logo:hover img {
    opacity: 0.9;
}

/* =========================
   3. NAV PILL (PREMIUM UPGRADE)
   ========================= */
.evmt-navPill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    /* Tighter padding for finished look */
    border-radius: 100px;

    /* 1. Deep Glass Gradient Background */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);

    /* 2. Defined Glass Borders (Top Highlight) */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    /* Light catching top edge */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    /* 3. Depth Shadows */
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.5),
        /* Drop Shadow */
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Inner Top Light */

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 10005;
}

.evmt-navItem {
    padding: 9px 20px;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

/* Hover State - "Pill inside a Pill" */
.evmt-navItem:hover,
.evmt-dropdown-wrapper:hover .evmt-navItem {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    /* Visible hover pill */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* =========================
   4. MEGA MENU (Clean Dark)
   ========================= */
.evmt-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    --dropdown-cursor-x: 50%;
    --dropdown-cursor-y: 50%;
}

.evmt-hover-bridge {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    z-index: 99998;
    display: none;
}

.evmt-dropdown-wrapper:hover .evmt-hover-bridge {
    display: block;
}

.evmt-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: min(1120px, calc(100vw - 56px));
    height: auto;
    max-height: 80vh;
    overflow: hidden;

    background-color: #020408;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(34, 72, 143, 0.22) 0%, transparent 34%),
        radial-gradient(circle at 84% 12%, rgba(202, 166, 81, 0.1) 0%, transparent 24%),
        radial-gradient(circle at 50% -12%, rgba(10, 26, 58, 0.95) 0%, transparent 70%),
        linear-gradient(180deg, rgba(4, 8, 16, 0.98) 0%, rgba(6, 15, 31, 0.98) 100%);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 99990;
    padding: 34px 34px 30px;
    margin-top: 24px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.evmt-dropdown-wrapper:hover .evmt-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.evmt-megamenu-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-content: start;
}

.evmt-menu-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 16px 16px 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.035);
}

.evmt-menu-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--evmt-gold);
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.evmt-dropdown-menu a {
    display: block;
    padding: 10px 14px 10px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-primary);
    line-height: 1.45;
    transition: color 0.24s ease, background 0.24s ease, padding 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
    position: relative;
    border-radius: 12px;
    border: 1px solid transparent;
    overflow: hidden;
}

.evmt-dropdown-menu a:hover {
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 41, 80, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.07);
    padding-left: 20px;
    transform: translateX(2px);
}

.evmt-dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: var(--evmt-gold);
    border-radius: 50%;
    opacity: 0;
    transition: 0.24s ease;
}

.evmt-dropdown-menu a:hover::before {
    opacity: 1;
}

.evmt-dropdown-menu a::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 1px;
    background: linear-gradient(90deg, rgba(211, 160, 47, 0) 0%, rgba(211, 160, 47, 0.7) 50%, rgba(211, 160, 47, 0) 100%);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.evmt-dropdown-menu a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.evmt-dropdown-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.evmt-dropdown-ambient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.06) 0%, transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 34%, transparent 66%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0.8;
}

.evmt-dropdown-cursor-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    left: var(--dropdown-cursor-x);
    top: var(--dropdown-cursor-y);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(78, 128, 214, 0.2) 0%, rgba(78, 128, 214, 0.08) 34%, rgba(211, 160, 47, 0.06) 56%, transparent 72%);
    opacity: 0;
    transition: opacity 0.22s ease;
    filter: blur(12px);
}

.evmt-dropdown-wrapper.is-hovering .evmt-dropdown-cursor-glow {
    opacity: 1;
}

@media (max-width: 1280px) {
    .evmt-dropdown-menu {
        width: min(980px, calc(100vw - 40px));
        padding: 28px 26px 24px;
    }

    .evmt-megamenu-inner {
        gap: 18px;
    }

    .evmt-menu-column {
        padding: 14px 14px 10px;
    }
}

/* =========================
   BETA POPUP
   ========================= */

body.evmt-beta-popup-open {
    overflow: hidden;
}

.evmt-beta-popup {
    position: fixed;
    inset: 0;
    z-index: 14000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.evmt-beta-popup.is-visible {
    opacity: 1;
    visibility: visible;
}

.evmt-beta-popup.is-closing {
    opacity: 0;
    visibility: hidden;
}

.evmt-beta-popup__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(79, 122, 206, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 78% 20%, rgba(207, 170, 90, 0.12) 0%, transparent 24%),
        linear-gradient(180deg, rgba(3, 7, 14, 0.84) 0%, rgba(4, 8, 16, 0.94) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.evmt-beta-popup__dialog {
    position: relative;
    width: min(620px, 100%);
    border-radius: 28px;
    padding: 34px 34px 30px;
    background:
        radial-gradient(circle at top left, rgba(64, 100, 175, 0.16) 0%, transparent 28%),
        linear-gradient(180deg, rgba(8, 14, 28, 0.96) 0%, rgba(4, 8, 16, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(18px) scale(0.985);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.evmt-beta-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.evmt-beta-popup__close:hover {
    transform: translateY(-1px);
    border-color: rgba(211, 160, 47, 0.28);
    background: rgba(255, 255, 255, 0.07);
}

.evmt-beta-popup__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    transform-origin: center;
}

.evmt-beta-popup__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.evmt-beta-popup__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.evmt-beta-popup__dialog::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(211, 160, 47, 0.12) 0%, transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 46%);
    pointer-events: none;
}

.evmt-beta-popup.is-visible .evmt-beta-popup__dialog {
    transform: translateY(0) scale(1);
}

.evmt-beta-popup__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--evmt-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.evmt-beta-popup__eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f0d685 0%, #c8941f 100%);
    box-shadow: 0 0 12px rgba(211, 160, 47, 0.6);
}

.evmt-beta-popup__title {
    position: relative;
    z-index: 1;
    margin: 22px 0 14px;
    color: #fff;
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.evmt-beta-popup__title span {
    background: linear-gradient(90deg, #d3a02f 0%, #f4df97 48%, #d3a02f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.evmt-beta-popup__copy {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 52ch;
    color: rgba(231, 236, 245, 0.78);
    font-size: 16px;
    line-height: 1.72;
}

.evmt-beta-popup__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.evmt-beta-popup__btn {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, color 0.24s ease;
    cursor: pointer;
}

.evmt-beta-popup__btn:hover {
    transform: translateY(-2px);
}

.evmt-beta-popup__btn--primary {
    border: 1px solid rgba(211, 160, 47, 0.28);
    background:
        linear-gradient(180deg, rgba(6, 18, 42, 0.98) 0%, rgba(5, 13, 28, 0.98) 100%);
    color: #0f1627;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 18px 42px rgba(0, 0, 0, 0.38);
}

.evmt-beta-popup__btn--primary span,
.evmt-beta-popup__btn--primary {
    background-image: linear-gradient(90deg, #d3a02f 0%, #f4df97 50%, #d3a02f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.evmt-beta-popup__btn--primary:hover {
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.38),
        0 0 26px rgba(211, 160, 47, 0.12);
}

.evmt-beta-popup__btn--secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.evmt-beta-popup__btn--secondary:hover {
    border-color: rgba(211, 160, 47, 0.22);
    color: #fff;
}

@media (max-width: 767px) {
    .evmt-beta-popup {
        padding: 16px;
        align-items: flex-end;
    }

    .evmt-beta-popup__dialog {
        border-radius: 24px;
        padding: 26px 20px 20px;
    }

    .evmt-beta-popup__close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

    .evmt-beta-popup__title {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
        line-height: 1.06;
    }

    .evmt-beta-popup__copy {
        font-size: 14px;
        line-height: 1.64;
    }

    .evmt-beta-popup__actions {
        flex-direction: column;
    }

    .evmt-beta-popup__btn {
        width: 100%;
        min-width: 0;
        padding: 15px 18px;
    }
}

/* =========================
   5. CTA BUTTONS
   ========================= */
.evmt-ctaWrap {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 10005;
}

.evmt-cta {
    position: relative;
    overflow: hidden;
    height: 46px;
    padding: 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.evmt-cta--secondary {
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.evmt-cta--secondary:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: #fff;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.evmt-cta--primary {
    color: var(--evmt-gold-light);
    background: transparent;
    border: 1px solid transparent;
}

.evmt-cta--primary::before {
    content: "";
    position: absolute;
    inset: -100%;
    z-index: -2;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 60deg, var(--evmt-gold) 100deg, #ffffff 120deg, var(--evmt-gold) 140deg, transparent 180deg);
    animation: evmtBeam 3s linear infinite;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}

.evmt-cta--primary::after {
    content: "";
    position: absolute;
    inset: 1.5px;
    background: #050810;
    border-radius: 999px;
    z-index: -1;
}

.evmt-cta--primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(240, 208, 117, 0.25);
    color: #fff;
}

@keyframes evmtBeam {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   6. PREMIUM MOBILE MENU (Alive + Gold)
   ========================================= */

/* Trigger Button */
.evmt-mobile-trigger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* INCREASED CONTRAST FOR VISIBILITY */
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 10005;
    /* Matches ctaWrap */
    transition: all 0.3s ease;
}

.evmt-mobile-trigger span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    /* Added shadow for pop */
}

.evmt-mobile-trigger.is-open {
    opacity: 0;
    pointer-events: none;
}

/* FULL SCREEN PANEL */
.evmt-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* User Requested Gradient */
    background-color: #020408;
    background-image:
        radial-gradient(circle at 50% -10%, #0a1a3a 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(6, 15, 31, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, #020408 0%, #060F1F 100%);
    z-index: 10001;
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.evmt-mobile-menu.active {
    transform: translateX(0);
}

/* MOBILE PARTICLES CANVAS */
#evmt-mobile-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    /* Subtle */
}

/* HEADER */
.evmt-mobile-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.mobile-logo {
    height: 34px;
    width: auto;
}

/* Close Button */
.evmt-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.evmt-close-btn span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.evmt-close-btn span:nth-child(1) {
    transform: rotate(45deg);
}

.evmt-close-btn span:nth-child(2) {
    transform: rotate(-45deg);
}

.evmt-close-btn:hover {
    background: rgba(211, 160, 47, 0.2);
    transform: rotate(90deg);
}

/* SCROLL AREA */
.evmt-mobile-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px 50px 25px;
    position: relative;
    z-index: 2;
}

/* LINKS */
.evmt-mobile-link {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.evmt-mobile-dropdown.open .evmt-mobile-dropdown-trigger {
    color: var(--evmt-gold);
    text-shadow: 0 0 15px rgba(211, 160, 47, 0.3);
}

.evmt-mobile-link:hover {
    color: var(--evmt-gold);
    padding-left: 10px;
}

/* DROPDOWN ICON */
.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}

.evmt-mobile-dropdown.open .icon-circle {
    background: var(--evmt-gold);
    color: #000;
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(211, 160, 47, 0.4);
}

.evmt-mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 5px;
}

.evmt-mobile-dropdown.open .evmt-mobile-dropdown-content {
    max-height: 2500px;
}

/* SUB MENUS */
.evmt-mobile-subgroup {
    border-left: 2px solid rgba(211, 160, 47, 0.3);
    margin-left: 10px;
}

.evmt-mobile-sub-trigger {
    padding: 16px 20px;
    font-size: 12px;
    color: var(--evmt-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}

.evmt-mobile-sub-trigger:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* ACCORDION LOGIC: Hidden by default */
.evmt-mobile-sub-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

/* Show when parent is open */
.evmt-mobile-subgroup.open .evmt-mobile-sub-links {
    max-height: 1000px;
    /* High enough to fit content */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.evmt-mobile-sub-links a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px 12px 30px;
    text-decoration: none;
    transition: 0.2s;
}

.evmt-mobile-sub-links a:hover {
    color: #fff;
    background: rgba(211, 160, 47, 0.08);
    border-left: 2px solid var(--evmt-gold);
}

/* ACTIONS */
.evmt-mobile-actions {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-cta-fix {
    width: 100%;
    text-align: center;
}

@media (max-width: 1100px) {
    .evmt-navPill {
        display: none;
    }

    .evmt-ctaWrap .evmt-cta {
        display: none;
    }

    .evmt-mobile-trigger {
        display: flex !important;
        /* FORCE SHOW */
    }
}

/* =========================
   8. SERVICES PAGE LAYOUT
   ========================= */
.evmt-page-wrapper {
    background-color: #020408;
    min-height: 100vh;
    overflow-x: hidden;
}

.evmt-sub-hero {
    position: relative;
    padding: 180px 20px 80px 20px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #0a1a3a 0%, #020408 60%);
}

.about-hero,
.contact-hero {
    overflow: hidden;
}

.about-hero::before,
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 18%, rgba(240, 208, 117, 0.08), transparent 28%),
        radial-gradient(circle at 78% 24%, rgba(82, 142, 255, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(2, 4, 8, 0.08), rgba(2, 4, 8, 0.48));
    z-index: 1;
}

.evmt-sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #020408 0%, transparent 100%),
        url("../assets/img/hero/desktop-hero-background-evmt-web.png");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
}

.evmt-content-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evmt-services-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px 100px 40px;
}

.evmt-service-category {
    margin-bottom: 120px;
    scroll-margin-top: 100px;
    /* For anchor links */
}

.evmt-category-header {
    margin-bottom: 50px;
    border-left: 2px solid var(--evmt-gold);
    padding-left: 30px;
}

.evmt-cat-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 10px 0;
}

.evmt-cat-desc {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

.evmt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Override Card Styles for Grid context */
.service-page-card {
    min-width: unset !important;
    /* Remove the horizontal scroll width constraint */
    width: 100% !important;
    height: auto !important;
    min-height: 480px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-page-card:hover {
    transform: translateY(-8px);
}

@media (max-width: 768px) {
    .evmt-services-grid {
        grid-template-columns: 1fr;
    }

    .evmt-sub-hero {
        padding-top: 140px;
    }

    .evmt-services-wrapper {
        padding: 0 20px 80px 20px;
    }
}

/* =========================
   7. PREMIUM FOOTER
   ========================= */
.evmt-footer {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(211, 160, 47, 0.028), transparent 18%),
        radial-gradient(circle at 78% 6%, rgba(46, 87, 161, 0.06), transparent 24%),
        radial-gradient(circle at 50% -20%, rgba(7, 15, 30, 0.96) 0%, transparent 62%),
        linear-gradient(180deg, #010309 0%, #020611 24%, #030813 58%, #01040a 100%);
    color: #fff;
    padding: 80px 0 30px;
    font-family: var(--font-secondary);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.evmt-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 136px;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(22, 42, 74, 0.03) 36%, transparent 100%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.018), transparent 62%);
    z-index: 0;
}

.evmt-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(1, 4, 10, 0.04) 0%, rgba(1, 4, 10, 0) 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, transparent 18%);
    z-index: 0;
}

#evmt-footer-canvas-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.22;
    mix-blend-mode: screen;
    overflow: hidden;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.92) 62%, rgba(0, 0, 0, 0.35) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.92) 62%, rgba(0, 0, 0, 0.35) 100%);
}

.evmt-footer.has-footer-particles .evmt-footer-bg {
    opacity: 0.72;
}

.evmt-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 2%, rgba(14, 36, 76, 0.14) 0%, transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.006), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.evmt-footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.evmt-footer-container::before {
    content: "";
    position: absolute;
    inset: -20px 20px -16px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.036) 0%, rgba(255, 255, 255, 0.01) 18%, rgba(255, 255, 255, 0.004) 100%),
        linear-gradient(180deg, rgba(5, 13, 26, 0.9) 0%, rgba(2, 7, 14, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 26px 70px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: -1;
}

.evmt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.evmt-footer-brand {
    max-width: 320px;
}

.evmt-footer-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
}

.evmt-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(225, 237, 252, 0.7);
    margin-bottom: 30px;
}

.evmt-socials {
    display: flex;
    gap: 16px;
}

.evmt-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.evmt-socials a img {
    width: 16px;
    height: 16px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.evmt-socials a:hover {
    background: var(--evmt-gold);
    border-color: var(--evmt-gold);
    transform: translateY(-3px);
}

.evmt-socials a:hover img {
    filter: grayscale(0);
    opacity: 1;
    brightness: 0;
}

.evmt-footer-col h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.evmt-footer-col a,
.evmt-footer-col p {
    display: block;
    font-size: 14px;
    color: rgba(225, 237, 252, 0.68);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.evmt-footer-col a:hover {
    color: #fff;
    padding-left: 6px;
}

.evmt-footer-cta {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    margin-top: 16px;
    padding: 0 24px;
    border-radius: 999px;
    overflow: hidden;
    border: none;
    background: transparent;
    color: var(--evmt-gold) !important;
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    z-index: 1;
}

.evmt-footer-cta::before {
    content: "";
    position: absolute;
    inset: -100%;
    z-index: -2;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 60deg, #D3A02F 100deg, #ffffff 120deg, #D3A02F 140deg, transparent 180deg);
    animation: evmtBeam 3s linear infinite;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}

.evmt-footer-cta::after {
    content: "";
    position: absolute;
    inset: 1.5px;
    border-radius: 999px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(9, 18, 35, 0.96), rgba(5, 10, 20, 0.98));
}

.evmt-footer-cta span,
.evmt-footer-cta {
    background: linear-gradient(90deg, #bf953f 0%, #fcf6ba 35%, #b38728 68%, #fbf5b7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.evmt-footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(240, 208, 117, 0.22), 0 14px 34px rgba(0, 0, 0, 0.24);
    padding-left: 24px !important;
}

.evmt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.evmt-footer-bottom p {
    font-size: 12px;
    color: rgba(225, 237, 252, 0.45);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
}

.evmt-footer-legal-meta {
    color: rgba(225, 237, 252, 0.58);
    letter-spacing: 0.04em;
}

.evmt-legal-links {
    display: flex;
    gap: 24px;
}

.evmt-legal-links a {
    font-size: 12px;
    color: rgba(225, 237, 252, 0.45);
    text-decoration: none;
    transition: 0.3s;
}

.evmt-legal-links a:hover {
    color: #fff;
}

@media (max-width: 767px) {
    #evmt-footer-canvas-bg {
        opacity: 0.14;
    }
}

@media (max-width: 1024px) {
    .evmt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .evmt-footer-container {
        padding: 0 20px;
    }

    .evmt-footer-container::before {
        inset: -16px 0 -12px;
        border-radius: 22px;
    }

    .evmt-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .evmt-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .evmt-footer-bottom p {
        justify-content: center;
    }
}

/* =========================
   9. ABOUT PAGE STYLES
   ========================= */
.section-spacing {
    padding: 100px 0;
}

.evmt-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.mb-60 {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--evmt-gold);
    margin-top: 16px;
    border-radius: 2px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Story Text */
.text-block p {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.text-block strong {
    color: #fff;
    font-weight: 700;
}

.about-hero-cta {
    margin-top: 28px;
}

.about-proof-grid,
.about-speciality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.about-proof-card,
.about-speciality-card {
    background: linear-gradient(180deg, rgba(11, 19, 35, 0.88), rgba(5, 10, 20, 0.94));
    border: 1px solid rgba(125, 170, 230, 0.16);
    border-radius: 20px;
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-proof-card:hover,
.about-speciality-card:hover {
    transform: translateY(-4px);
    border-color: rgba(211, 160, 47, 0.28);
    background: linear-gradient(180deg, rgba(16, 27, 50, 0.9), rgba(6, 12, 24, 0.98));
}

.about-proof-label,
.about-speciality-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--evmt-gold);
}

.about-proof-card h3,
.about-speciality-card h3 {
    font-family: var(--font-primary);
    font-size: 1.28rem;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 12px;
}

.about-proof-card p,
.about-speciality-card p,
.about-cta-copy {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
}

.about-cta-copy {
    max-width: 680px;
    margin: 0 auto 28px;
}

/* Stats Strip */
.evmt-stats-strip {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-val {
    display: block;
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--evmt-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(13, 22, 41, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 160, 47, 0.3);
    background: rgba(13, 22, 41, 0.6);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(22, 35, 64, 0.9), rgba(7, 12, 24, 0.94));
    border: 1px solid rgba(211, 160, 47, 0.2);
    color: var(--evmt-gold);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.value-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
}

.value-card p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.evmt-about-cta {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, rgba(10, 20, 40, 0.4) 0%, transparent 60%);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-val {
        font-size: 2.5rem;
    }
}

/* =========================
   10. CONTACT PAGE STYLES
   ========================= */
.evmt-contact-section {
    padding: 0 0 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background:
        linear-gradient(180deg, rgba(12, 20, 38, 0.68), rgba(6, 10, 18, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

/* Info Side */
.contact-info {
    padding: 60px;
    background:
        radial-gradient(circle at top left, rgba(63, 103, 189, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(10, 18, 38, 0.98), rgba(6, 10, 20, 0.98));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    font-family: var(--font-primary);
    font-size: 1.9rem;
    line-height: 1.24;
    margin-bottom: 12px;
}

.contact-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--evmt-gold);
}

.info-desc {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(18, 31, 56, 0.95), rgba(7, 12, 23, 0.95));
    border: 1px solid rgba(211, 160, 47, 0.24);
    color: var(--evmt-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.info-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-text h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #fff;
}

.info-text p,
.info-text a {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.info-text a:hover {
    color: var(--evmt-gold);
}

.contact-meta-grid {
    display: grid;
    gap: 14px;
}

.contact-meta-card {
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.contact-meta-card span {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: rgba(240, 208, 117, 0.88);
}

.contact-meta-card strong {
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

/* Form Side */
.contact-form-wrapper {
    padding: 60px;
    background:
        radial-gradient(circle at 88% 12%, rgba(94, 148, 255, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(11, 18, 33, 0.92), rgba(6, 10, 18, 0.98));
}

.evmt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-heading h3 {
    font-family: var(--font-primary);
    font-size: 1.7rem;
    line-height: 1.28;
    color: #fff;
    margin-bottom: 10px;
}

.contact-form-heading p {
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.68);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--evmt-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(211, 160, 47, 0.08);
}

.form-group select option {
    background: #050810;
    color: #fff;
}

.contact-form-actions {
    display: grid;
    gap: 14px;
}

.contact-submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

.contact-schedule-btn {
    width: 100%;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(12, 19, 35, 0.92), rgba(7, 12, 22, 0.98));
    color: #fff;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.96rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-schedule-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(211, 160, 47, 0.3);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.contact-schedule-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    color: var(--evmt-gold);
}

.contact-schedule-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-success-state {
    min-height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 16px;
    padding: 44px 20px;
}

.contact-success-state h3 {
    font-family: var(--font-primary);
    font-size: 1.7rem;
    color: #fff;
}

.contact-success-state p {
    max-width: 420px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.contact-success-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--evmt-gold);
    border: 1px solid rgba(211, 160, 47, 0.25);
    background: linear-gradient(180deg, rgba(17, 31, 57, 0.92), rgba(7, 12, 22, 0.98));
}

.contact-success-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 0;
        border-radius: 18px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-info {
        gap: 26px;
    }

    .contact-info h3 {
        font-size: 1.45rem;
        line-height: 1.25;
    }

    .contact-form-heading h3 {
        font-size: 1.42rem;
    }

    .info-desc {
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .info-item {
        gap: 14px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .info-text h4 {
        font-size: 1rem;
    }

    .info-text p,
    .info-text a {
        font-size: 0.93rem;
        line-height: 1.5;
    }

    .contact-meta-card strong {
        font-size: 0.92rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .evmt-sub-hero {
        padding-top: 150px;
    }

    .evmt-contact-section {
        padding: 0 20px 80px 20px;
    }

    .about-proof-grid,
    .about-speciality-grid {
        grid-template-columns: 1fr;
    }

    .about-proof-card,
    .about-speciality-card {
        padding: 24px 20px;
    }
}
