 /* ============================================================
               RESET & VARIABLES
               ============================================================ */
        html {
            scroll-behavior: smooth;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --desktop: #000000;
            --window: #111115;
            --panel: #18181c;
            --panel-2: #202024;
            --border: rgba(255, 255, 255, .08);
            --border-strong: rgba(255, 255, 255, .14);
            --text: #f2f2f4;
            --text-dim: #9a9aa2;
            --text-faint: #5c5c64;
            --accent: #4d7fff;
            --accent-dim: #213262;
            --green: #2ecc71;
            --wa: #3fce6a;
            --tg: #3ea8e0;
            --disc: #8b7bf0;
            --ig: #e05a86;
        }
        html,
        body {
            width: 100%;
            min-height: 100vh;
            background: #000;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        body {
            padding: 40px 20px 0;
            background:
                radial-gradient(circle at 20% 15%, #1a1a1f 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, #111115 0%, transparent 40%),
                #000;
        }
.page {
    max-width: 960px;
    margin: 80px auto 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.page > *:last-child {
    margin-bottom: 0;
}
        .section-label {
            font-family: 'Times New Roman', Times, Georgia, serif;
            font-weight: 700;
            font-size: 38px;
            letter-spacing: .01em;
            margin-bottom: 22px;
            text-transform: uppercase;
        }
        .section-label .dim {
            color: var(--text-faint);
        }
        .section-label .accent {
            color: var(--accent);
        }

        #desktop-messages {
            margin-bottom: 80px;
        }

        /* --- MENUBAR --- */
        .menubar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
            height: 30px;
            background: rgba(10, 10, 12, .9);
            border: 1px solid var(--border);
            border-bottom: none;
            border-radius: 10px 10px 0 0;
            font-size: 12px;
            color: var(--text-dim);
            font-family: 'JetBrains Mono', monospace;
        }
        .menubar .brand {
            color: var(--text);
            font-weight: 500;
        }
        .menubar .crumb {
            color: var(--text-faint);
            font-size: 11px;
        }
        .menubar .right {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .dot-live {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green);
            margin-right: 6px;
            box-shadow: 0 0 0 3px rgba(46, 204, 113, .15);
        }
        .clock {
            font-variant-numeric: tabular-nums;
        }

        /* --- STAGE --- */
        .stage {
            position: relative;
            min-height: 520px;
            background: linear-gradient(160deg, #121216, #08080a 60%);
            border: 1px solid var(--border);
            border-top: none;
            border-radius: 0 0 14px 14px;
            overflow: hidden;
            box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
        }
        .desktop-layer {
            padding: 34px 30px;
            transition: opacity .3s ease, filter .3s ease;
        }
        .desktop-layer.dimmed {
            opacity: .25;
            filter: blur(1px) saturate(.6);
            pointer-events: none;
        }
        .breadcrumb-caption {
            text-align: center;
            font-size: 10.5px;
            letter-spacing: .14em;
            color: var(--text-faint);
            font-family: 'JetBrains Mono', monospace;
            text-transform: uppercase;
            margin-bottom: 26px;
        }
        .icon-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px 40px;
            max-width: 520px;
            margin: 0 auto;
        }
        .desk-folder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            text-align: center;
            transition: transform .15s ease;
        }
        .desk-folder:hover {
            transform: translateY(-3px);
        }
        .desk-folder .ficon {
            width: 68px;
            height: 52px;
            border-radius: 7px 7px 10px 10px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            box-shadow: 0 10px 22px -8px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -10px 16px -8px rgba(0, 0, 0, .35);
            background-blend-mode: overlay;
            transition: box-shadow .18s ease;
        }
        .desk-folder .ficon::before {
            content: '';
            position: absolute;
            top: -7px;
            left: 5px;
            width: 26px;
            height: 9px;
            border-radius: 5px 5px 0 0;
            background: inherit;
            filter: brightness(1.18);
        }
        .desk-folder .fbadge {
            position: absolute;
            top: -6px;
            right: -8px;
            width: 19px;
            height: 19px;
            border-radius: 50%;
            background: var(--accent);
            font-size: 10px;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            box-shadow: 0 0 0 3px #111116;
        }
        .desk-folder .fname {
            font-size: 11.5px;
            font-weight: 600;
            letter-spacing: .02em;
            color: #e8e8ec;
        }

        /* DOCK */
        .dock-wrap {
            display: flex;
            justify-content: center;
            padding: 16px 0 22px;
        }
        .dock {
            display: flex;
            gap: 12px;
            padding: 8px 12px;
            background: rgba(14, 14, 18, .9);
            border: 1px solid var(--border);
            border-radius: 16px;
            backdrop-filter: blur(6px);
        }
        .dock-icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            background: var(--panel-2);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: transform .15s ease, background .15s ease, border-color .15s ease;
            position: relative;
        }
        .dock-icon:hover {
            transform: translateY(-3px);
        }
        .dock-icon.active {
            background: var(--accent-dim);
            border-color: var(--accent);
            color: #cddaff;
        }

        /* FINDER WINDOW */
        .finder-window {
            position: absolute;
            inset: 0;
            margin: auto;
            width: 92%;
            max-width: 820px;
            height: 460px;
            background: var(--window);
            border: 1px solid var(--border-strong);
            border-radius: 12px;
            box-shadow: 0 40px 90px -20px rgba(0, 0, 0, .9);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            transform: scale(.1);
            pointer-events: none;
            transition: transform .42s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
            z-index: 10;
        }
        .finder-window.open {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }
        .fw-titlebar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px;
            height: 38px;
            flex-shrink: 0;
            background: linear-gradient(180deg, #1c1c22, #16161a);
            border-bottom: 1px solid var(--border);
        }
        .traffic {
            display: flex;
            gap: 8px;
        }
        .traffic span {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            display: block;
            cursor: pointer;
        }
        .traffic .r {
            background: #ff5f57;
        }
        .traffic .y {
            background: #febc2e;
        }
        .traffic .g {
            background: #28c840;
        }
        .fw-titlebar .title {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12.5px;
            color: var(--text-dim);
            font-family: 'JetBrains Mono', monospace;
        }
        .fw-view-toggle {
            display: flex;
            gap: 6px;
        }
        .fw-view-toggle button {
            width: 22px;
            height: 22px;
            border-radius: 5px;
            border: 1px solid var(--border);
            background: var(--panel-2);
            color: var(--text-faint);
            font-size: 10px;
            cursor: pointer;
        }
        .fw-view-toggle button.active {
            background: var(--accent-dim);
            color: #cddaff;
            border-color: var(--accent);
        }
        .fw-body {
            flex: 1;
            display: flex;
            min-height: 0;
            position: relative;
        }
        .fw-sidebar {
            width: 190px;
            flex-shrink: 0;
            background: var(--panel);
            border-right: 1px solid var(--border);
            padding: 12px 8px;
            overflow-y: auto;
        }
        .fw-sidebar-label {
            font-size: 9.5px;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--text-faint);
            padding: 6px 8px;
            font-family: 'JetBrains Mono', monospace;
        }
        .fw-side-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 6px;
            font-size: 12px;
            color: var(--text-dim);
            cursor: pointer;
            margin-bottom: 1px;
        }
        .fw-side-item:hover {
            background: rgba(255, 255, 255, .04);
        }
        .fw-side-item.active {
            background: var(--accent);
            color: #fff;
        }
        .fw-side-item .sic {
            width: 14px;
            text-align: center;
            font-size: 11px;
        }
        .fw-side-item .scount {
            margin-left: auto;
            font-size: 10.5px;
            font-family: 'JetBrains Mono', monospace;
            opacity: .8;
        }
        .fw-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .fw-crumbbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 8px 16px;
            border-bottom: 1px solid var(--border);
        }
        .fw-crumbbar h2 {
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .fw-crumbbar .items-tag {
            color: var(--text-faint);
            font-weight: 500;
            font-size: 11.5px;
            margin-left: 4px;
        }
        .fw-spinner {
            width: 13px;
            height: 13px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, .15);
            border-top-color: var(--accent);
            animation: spin .7s linear infinite;
            display: none;
        }
        .fw-spinner.show {
            display: inline-block;
        }
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        .fw-grid-wrap {
            flex: 1;
            overflow-y: auto;
            padding: 16px;
        }
        .fw-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 14px;
            transition: opacity .18s ease, transform .18s ease;
        }
        .fw-grid.loading {
            opacity: 0;
            transform: translateY(6px);
        }
        .fw-grid.list {
            grid-template-columns: 1fr;
        }
        .card {
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: 9px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0;
            transform: translateY(8px);
            animation: cardIn .35s ease forwards;
            transition: border-color .15s ease, transform .15s ease;
        }
        .card:hover {
            border-color: var(--border-strong);
            transform: translateY(-2px);
        }
        @keyframes cardIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .card .thumb {
            height: 78px;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            font-size: 20px;
            position: relative;
            color: #fff;
            background-size: cover;
            background-position: center;
        }
        .card .thumb::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .55) 100%);
        }
        .card .thumb .cat-badge {
            position: relative;
            z-index: 1;
            margin: 6px;
            width: 22px;
            height: 22px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10.5px;
            background: rgba(0, 0, 0, .6);
            backdrop-filter: blur(3px);
            border: 1px solid rgba(255, 255, 255, .15);
        }
        .card .thumb .link-badge {
            position: absolute;
            top: 6px;
            right: 6px;
            z-index: 2;
            width: 24px;
            height: 24px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            background: rgba(46, 204, 113, 0.8);
            backdrop-filter: blur(3px);
            border: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            opacity: 0;
            transition: opacity .2s;
        }
        .card:hover .thumb .link-badge {
            opacity: 1;
        }
        .card .thumb .play {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, .25);
            opacity: 0;
            transition: opacity .15s;
            font-size: 16px;
            z-index: 2;
        }
        .card:hover .thumb .play {
            opacity: 1;
        }
        .card .meta {
            padding: 8px 9px;
        }
        .card .ctitle {
            font-size: 11px;
            font-weight: 600;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .card .csub {
            font-size: 9.5px;
            color: var(--text-faint);
            margin-top: 2px;
            font-family: 'JetBrains Mono', monospace;
        }
        .fw-grid.list .card {
            display: flex;
            align-items: center;
        }
        .fw-grid.list .card .thumb {
            width: 70px;
            height: 44px;
            flex-shrink: 0;
        }
        .fw-grid.list .card .meta {
            flex: 1;
        }
        .fw-statusbar {
            display: flex;
            justify-content: space-between;
            padding: 6px 16px;
            border-top: 1px solid var(--border);
            font-size: 10.5px;
            color: var(--text-faint);
            font-family: 'JetBrains Mono', monospace;
            flex-shrink: 0;
        }

        /* Context menu */
        .ctx-menu {
            position: absolute;
            width: 210px;
            background: #1a1a20;
            border: 1px solid var(--border-strong);
            border-radius: 9px;
            box-shadow: 0 18px 40px -10px rgba(0, 0, 0, .8);
            z-index: 30;
            opacity: 0;
            transform: scale(.92);
            transform-origin: top left;
            pointer-events: none;
            transition: opacity .12s ease, transform .12s ease;
        }
        .ctx-menu.show {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }
        .ctx-head {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 10px;
            border-bottom: 1px solid var(--border);
        }
        .ctx-head .cthumb {
            width: 26px;
            height: 22px;
            border-radius: 4px;
            flex-shrink: 0;
            background-size: cover;
            background-position: center;
        }
        .ctx-head .cinfo {
            min-width: 0;
        }
        .ctx-head .cinfo .n {
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ctx-item {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 8px 11px;
            font-size: 11.5px;
            color: var(--text-dim);
            cursor: pointer;
        }
        .ctx-item i {
            width: 13px;
            text-align: center;
            font-size: 10.5px;
            opacity: .85;
        }
        .ctx-item:hover {
            background: rgba(255, 255, 255, .06);
            color: var(--text);
        }
        .ctx-item .tag {
            margin-left: auto;
            font-size: 8.5px;
            color: var(--text-faint);
            font-family: 'JetBrains Mono', monospace;
        }
        .ctx-sep {
            height: 1px;
            background: var(--border);
            margin: 2px 0;
        }
        .ctx-item.danger {
            color: #ff7a70;
        }

        /* ===== MESSAGES SECTION ===== */
        .msg-window {
            background: var(--window);
            border: 1px solid var(--border-strong);
            border-radius: 0 0 14px 14px;
            overflow: hidden;
            box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .9);
        }
        .titlebar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 14px;
            height: 40px;
            background: linear-gradient(180deg, #1c1c22, #16161a);
            border-bottom: 1px solid var(--border);
            cursor: grab;
        }
        .titlebar:active {
            cursor: grabbing;
        }
        .titlebar .title {
            font-size: 12.5px;
            color: var(--text-dim);
            font-family: 'JetBrains Mono', monospace;
        }
        .titlebar .spacer {
            width: 59px;
        }
        .body {
            display: flex;
            min-height: 420px;
        }
        .sidebar {
            width: 250px;
            flex-shrink: 0;
            background: var(--panel);
            border-right: 1px solid var(--border);
            padding: 14px 10px;
        }
        .sidebar-label {
            font-size: 10.5px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-faint);
            padding: 8px 10px 6px;
            font-family: 'JetBrains Mono', monospace;
        }
        .msg-list {
            overflow-y: auto;
        }
        .msg-item {
            display: flex;
            gap: 11px;
            padding: 12px 18px;
            cursor: pointer;
            border-left: 2px solid transparent;
            transition: background .15s, border-color .15s;
        }
        .msg-item:hover {
            background: rgba(255, 255, 255, .025);
        }
        .msg-item.active {
            background: transparent;
            border-left-color: transparent;
        }
        .msg-item.active .msg-item-top .name {
            position: relative;
        }
        .msg-item.active .msg-item-top .name::after {
            content: '●';
            color: var(--accent);
            font-size: 14px;
            margin-left: 6px;
            display: inline-block;
            vertical-align: middle;
            animation: pulseDot 1.5s infinite;
        }
        @keyframes pulseDot {
            0%,
            100% {
                opacity: .6;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }
        .avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12.5px;
            font-weight: 600;
            color: #fff;
            font-family: 'Space Grotesk', sans-serif;
        }
        .msg-item-body {
            min-width: 0;
            flex: 1;
        }
        .msg-item-top {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 6px;
        }
        .msg-item-top .name {
            font-size: 13px;
            font-weight: 600;
        }
        .msg-item-top .time {
            font-size: 10px;
            color: var(--text-faint);
            font-family: 'JetBrains Mono', monospace;
            flex-shrink: 0;
        }
        .msg-item-preview {
            font-size: 11.5px;
            color: var(--text-faint);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin: 2px 0 6px;
        }
        .platform-tag {
            display: inline-block;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: .03em;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'JetBrains Mono', monospace;
            background: rgba(255, 255, 255, .08);
            color: var(--text-dim);
        }
        .thread {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .thread-head {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 20px;
            border-bottom: 1px solid var(--border);
        }
        .thread-head .name {
            font-size: 13.5px;
            font-weight: 600;
        }
        .thread-head .sub {
            font-size: 11px;
            color: var(--text-faint);
        }
        .live-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 10.5px;
            color: var(--accent);
            font-family: 'JetBrains Mono', monospace;
            padding: 5px 10px;
            border-radius: 20px;
            background: rgba(77, 127, 255, .1);
            border: 1px solid rgba(77, 127, 255, .25);
            cursor: default;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .live-badge .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulseDot 1.1s infinite;
        }
        .live-badge.manual {
            color: var(--text-dim);
            background: rgba(255, 255, 255, .05);
            border-color: var(--border);
            cursor: pointer;
        }
        .live-badge.manual .live-dot {
            display: none;
        }
        .thread-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .bubble {
            max-width: 70%;
            padding: 9px 13px;
            border-radius: 14px;
            font-size: 13px;
            line-height: 1.5;
        }
        .bubble.them {
            align-self: flex-start;
            background: var(--panel-2);
            border-bottom-left-radius: 4px;
        }
        .bubble.me {
            align-self: flex-end;
            background: var(--accent);
            color: #fff;
            border-bottom-right-radius: 4px;
        }
        .typing {
            align-self: flex-start;
            display: flex;
            gap: 4px;
            padding: 11px 14px;
            background: var(--panel-2);
            border-radius: 14px;
            border-bottom-left-radius: 4px;
        }
        .typing span {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--text-faint);
            animation: bounce 1.2s infinite;
        }
        .typing span:nth-child(2) {
            animation-delay: .15s;
        }
        .typing span:nth-child(3) {
            animation-delay: .3s;
        }
        @keyframes bounce {
            0%,
            60%,
            100% {
                transform: translateY(0);
                opacity: .4;
            }
            30% {
                transform: translateY(-3px);
                opacity: 1;
            }
        }
        .thread-input {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-top: 1px solid var(--border);
        }
        .thread-input input {
            flex: 1;
            background: var(--panel-2);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 9px 14px;
            color: var(--text);
            font-size: 12.5px;
            font-family: 'Inter', sans-serif;
        }
        .thread-input input::placeholder {
            color: var(--text-faint);
        }
        .thread-input .send {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
            color: #fff;
            font-size: 13px;
            border: none;
            transition: transform .12s ease, background .12s ease;
        }
        .thread-input .send.sending {
            transform: scale(.85);
            background: #3a63cc;
        }
        .thread-input input.typing-sim {
            caret-color: var(--accent);
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .1);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }

        /* ===== COURSE JOURNEY SECTION ===== */
        .software-journey-section {
            position: relative;
            overflow: hidden;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-top: 80px;
            margin-bottom: 0;
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8faff 0%, #f0fdfa 100%);
            font-family: 'Amiri', serif;
            color: #151a30;
        }
        .software-journey-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        .software-journey-section .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .software-journey-section .section-header h2 {
            font-size: 3rem;
            color: #151a30;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            font-family: 'Amiri', serif;
        }
        .software-journey-section .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #10b981, #06b6d4);
            border-radius: 2px;
        }
        .software-journey-section .section-header p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .journey-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 4rem;
            z-index: 2;
        }
        .journey-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            opacity: 0.7;
            transition: all 0.4s ease;
            position: relative;
        }
        .journey-step.active {
            opacity: 1;
        }
        .journey-step:nth-child(even) {
            flex-direction: row-reverse;
            text-align: left;
        }
        .step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 2rem;
            position: relative;
            flex-shrink: 0;
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #10b981, #06b6d4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }
        .journey-step.active .step-number {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
        }
        .step-line {
            width: 3px;
            height: 120px;
            background: linear-gradient(to bottom, #10b981, #06b6d4);
            margin-top: 1rem;
            border-radius: 2px;
            opacity: 0.2;
        }
        .journey-step:last-child .step-line {
            display: none;
        }
        .step-content {
            flex: 1;
            background: #fff;
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }
        .journey-step.active .step-content {
            border-color: #10b981;
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
            transform: translateY(-5px);
        }
        .step-icon {
            width: 70px;
            height: 70px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: #10b981;
            transition: all 0.3s ease;
        }
        .journey-step.active .step-icon {
            background: #10b981;
            color: #fff;
            transform: scale(1.1) rotate(5deg);
        }
        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #151a30;
            font-weight: 700;
            font-family: 'Amiri', serif;
        }
        .step-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
            padding: 0.2rem 1rem;
            border-radius: 50px;
            margin-left: 0.8rem;
            vertical-align: middle;
        }
        .step-content p {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        .step-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        .journey-step.active .step-details {
            max-height: 400px;
        }
        .step-details ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .step-details li {
            padding: 0.6rem 0;
            color: #475569;
            position: relative;
            padding-left: 1.8rem;
            font-size: 1rem;
            border-bottom: 1px dashed rgba(16, 185, 129, 0.1);
        }
        .step-details li:last-child {
            border-bottom: none;
        }
        .step-details li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .challenge-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-radius: 16px;
            padding: 1.2rem 1.8rem;
            margin-top: 1.2rem;
            border-left: 4px solid #f59e0b;
        }
        .challenge-box h4 {
            color: #92400e;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-family: 'Amiri', serif;
        }
        .challenge-box h4 i {
            color: #f59e0b;
        }
        .challenge-box p {
            color: #78350f;
            margin: 0.5rem 0 0 0;
            font-size: 1rem;
        }
        .challenge-box .competitors {
            display: flex;
            gap: 1.5rem;
            margin-top: 0.8rem;
            flex-wrap: wrap;
        }
        .challenge-box .competitor {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.5);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            color: #78350f;
        }
        .challenge-box .competitor i {
            font-size: 1.2rem;
        }
        .challenge-box .vs {
            font-weight: 800;
            color: #dc2626;
            font-size: 1.1rem;
        }
        .challenge-box .challenge-note {
            margin-top: 0.8rem;
            font-size: 0.95rem;
            color: #78350f;
        }
        .challenge-box .challenge-note i {
            color: #f59e0b;
        }
        .startup-message-simple {
            text-align: center;
            max-width: 700px;
            margin: 3rem auto 0;
            padding: 1rem;
        }
        .startup-message-simple h3 {
            font-size: 2.2rem;
            color: #151a30;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: 'Amiri', serif;
        }
        .startup-message-simple p {
            font-size: 1.2rem;
            color: #475569;
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        .simple-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #10b981, #06b6d4);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            font-family: 'Amiri', serif;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
            border: none;
            cursor: pointer;
        }
        .simple-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
            gap: 1.2rem;
        }
        .simple-btn i {
            transition: transform 0.3s ease;
        }
        .simple-btn:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 992px) {
            .journey-step {
                flex-direction: column !important;
                align-items: center;
                text-align: center;
            }
            .step-indicator {
                margin: 0 0 1.5rem 0;
            }
            .step-line {
                height: 60px;
            }
            .step-icon {
                margin: 0 auto 1.5rem;
            }
            .step-content {
                text-align: center;
                width: 100%;
            }
            .step-content h3 {
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            .step-badge {
                display: block;
                margin: 0.5rem auto 0;
                width: fit-content;
            }
            .startup-message-simple h3 {
                font-size: 1.8rem;
            }
            .challenge-box .competitors {
                justify-content: center;
            }
        }

        @media (max-width: 700px) {
            .sidebar {
                width: 180px;
            }
            .fw-sidebar {
                width: 140px;
            }
            .icon-grid {
                gap: 20px;
            }
        }
        @media (max-width: 550px) {
            .sidebar {
                display: none;
            }
            .fw-sidebar {
                display: none;
            }
            .body .thread {
                flex: 1;
            }
            .fw-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* ============================================================
           GMAYNE AI — AI ASSISTANT (Premium Experience)
           ============================================================ */
        #gm-assistant {
            --gm-accent: #10b981;
            --gm-accent-2: #06b6d4;
            --gm-violet: #14b8a6;
            --gm-panel: rgba(12, 14, 22, .82);
            --gm-line: rgba(255, 255, 255, .09);
            --gm-line-strong: rgba(255, 255, 255, .14);
            --gm-text: #eef2ff;
            --gm-muted: #9aa3bd;
            --gm-font: 'Inter', 'Amiri', sans-serif;
            margin: 0;
            padding: 0;
        }
        #gm-assistant *,
        #gm-assistant *::before,
        #gm-assistant *::after {
            box-sizing: border-box;
        }

        /* ---- floating button ---- */
        .gm-fab {
            position: fixed;
            right: 26px;
            bottom: 26px;
            z-index: 1100;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            width: 62px;
            height: 62px;
            padding: 0;
            border: none;
            border-radius: 31px;
            cursor: pointer;
            color: #fff;
            background: linear-gradient(135deg, var(--gm-accent) 0%, var(--gm-violet) 55%, var(--gm-accent-2) 110%);
            box-shadow: 0 14px 38px -10px rgba(16, 185, 129, .55), 0 6px 18px rgba(0, 0, 0, .4);
            transition: width .45s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, transform .3s ease;
        }
        .gm-fab::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 31px;
            background: linear-gradient(135deg, var(--gm-accent), var(--gm-violet) 55%, var(--gm-accent-2));
            z-index: -1;
            animation: gm-pulse 2.8s ease-out infinite;
        }
        .gm-fab .gm-fab-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            animation: gm-bob 3.4s ease-in-out infinite;
            position: relative;
            z-index: 1;
            margin-right: 0;
        }
        .gm-fab .gm-fab-label {
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            font-family: var(--gm-font);
            font-weight: 600;
            font-size: .95rem;
            letter-spacing: .01em;
            opacity: 0;
            transition: max-width .45s cubic-bezier(.2, .8, .2, 1), opacity .35s ease, margin-left .45s ease;
            margin-left: 0;
        }
        .gm-fab:hover {
            width: 180px;
            box-shadow: 0 16px 44px -10px rgba(16, 185, 129, .7), 0 8px 22px rgba(0, 0, 0, .45);
            transform: translateY(-2px);
        }
        .gm-fab:hover .gm-fab-label {
            max-width: 120px;
            opacity: 1;
            margin-left: 10px;
        }
        .gm-fab:focus-visible {
            outline: 2px solid var(--gm-accent-2);
            outline-offset: 3px;
        }
        .gm-fab .gm-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, .5);
            transform: scale(0);
            animation: gm-ripple .65s ease-out forwards;
            pointer-events: none;
        }
        @keyframes gm-pulse {
            0% {
                transform: scale(1);
                opacity: .55;
            }
            70% {
                transform: scale(1.42);
                opacity: 0;
            }
            100% {
                transform: scale(1.42);
                opacity: 0;
            }
        }
        @keyframes gm-bob {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }
        @keyframes gm-ripple {
            to {
                transform: scale(2.6);
                opacity: 0;
            }
        }

        /* ---- panel ---- */
        .gm-panel {
            position: fixed;
            right: 26px;
            bottom: 104px;
            z-index: 1100;
            width: min(420px, calc(100vw - 40px));
            height: min(660px, calc(100vh - 130px));
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 24px;
            background: var(--gm-panel);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            backdrop-filter: blur(28px) saturate(180%);
            border: 1px solid var(--gm-line-strong);
            box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .85), 0 0 70px -28px rgba(16, 185, 129, .5);
            transform-origin: bottom right;
            opacity: 0;
            visibility: hidden;
            transform: translateY(26px) scale(.92) rotateX(2deg);
            filter: blur(8px);
            transition: opacity .4s ease, transform .55s cubic-bezier(.34, 1.56, .64, 1), filter .5s ease, visibility .4s ease;
        }
        @supports (height: 100dvh) {
            .gm-panel {
                height: min(660px, calc(100dvh - 130px));
            }
        }
        .gm-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(6, 182, 212, .6), rgba(16, 185, 129, .6), transparent);
            z-index: 2;
        }
        .gm-panel::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            z-index: -1;
            background: linear-gradient(135deg, rgba(16, 185, 129, .12), rgba(6, 182, 212, .08));
            pointer-events: none;
        }
        .gm-panel.gm-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1) rotateX(0);
            filter: blur(0);
        }

        /* ---- header ---- */
        .gm-head {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px 14px;
            border-bottom: 1px solid var(--gm-line);
            background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
            flex-shrink: 0;
        }
        .gm-avatar {
            position: relative;
            width: 42px; height: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 1.2rem;
            color: #fff;
            background: linear-gradient(135deg, var(--gm-accent), var(--gm-violet) 55%, var(--gm-accent-2));
            box-shadow: 0 8px 24px -8px rgba(16, 185, 129, .65);
            flex-shrink: 0;
            transition: transform .3s ease;
        }
        .gm-panel.gm-open .gm-avatar {
            transform: scale(1);
        }
        .gm-avatar::after {
            content: '';
            position: absolute;
            right: -2px;
            bottom: -2px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: #2ecc71;
            border: 2.5px solid #10131b;
            box-shadow: 0 0 0 3px rgba(46, 204, 113, .2);
        }
        .gm-head-txt {
            flex: 1;
            min-width: 0;
        }
        .gm-head-name {
            font-family: var(--gm-font);
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            letter-spacing: .01em;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gm-head-name .gm-badge-ai {
            font-size: .55rem;
            font-weight: 600;
            background: rgba(16, 185, 129, .25);
            color: var(--gm-accent-2);
            padding: 1px 8px;
            border-radius: 99px;
            letter-spacing: .06em;
        }
        .gm-status {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 2px;
            font-size: .72rem;
            color: var(--gm-muted);
        }
        .gm-status i {
            font-size: .45rem;
            color: #2ecc71;
            animation: gm-blink 1.6s ease-in-out infinite;
        }
        @keyframes gm-blink {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: .25;
            }
        }
        .gm-head-actions {
            display: flex;
            gap: 4px;
        }
        .gm-icon-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid var(--gm-line);
            background: rgba(255, 255, 255, .04);
            color: var(--gm-muted);
            display: grid;
            place-items: center;
            cursor: pointer;
            font-size: .8rem;
            transition: .25s ease;
        }
        .gm-icon-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, .1);
            border-color: var(--gm-line-strong);
        }
        .gm-icon-btn:focus-visible {
            outline: 2px solid var(--gm-accent-2);
            outline-offset: 2px;
        }

        /* ---- body / messages ---- */
        .gm-body {
            flex: 1;
            overflow-y: auto;
            padding: 18px 16px 12px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, .14) transparent;
        }
        .gm-body::-webkit-scrollbar {
            width: 5px;
        }
        .gm-body::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, .14);
            border-radius: 99px;
        }
        .gm-msg {
            display: flex;
            gap: 10px;
            max-width: 92%;
            animation: gm-pop .4s cubic-bezier(.16, 1, .3, 1) both;
        }
        .gm-msg.ai {
            align-self: flex-start;
        }
        .gm-msg.user {
            align-self: flex-end;
            flex-direction: row-reverse;
        }
        @keyframes gm-pop {
            from {
                opacity: 0;
                transform: translateY(12px) scale(.96);
            }
            to {
                opacity: 1;
                transform: none;
            }
        }
        .gm-msg-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            flex-shrink: 0;
            display: grid;
            place-items: center;
            font-size: .78rem;
            color: #fff;
            background: linear-gradient(135deg, var(--gm-accent), var(--gm-violet) 60%);
            margin-top: 2px;
            box-shadow: 0 4px 12px -4px rgba(16, 185, 129, .3);
        }
        .gm-bubble {
            position: relative;
            padding: 11px 15px 10px;
            border-radius: 16px;
            font-family: var(--gm-font);
            font-size: .875rem;
            line-height: 1.7;
            word-break: break-word;
        }
        .gm-msg.ai .gm-bubble {
            background: rgba(255, 255, 255, .06);
            border: 1px solid var(--gm-line);
            border-top-left-radius: 6px;
            color: var(--gm-text);
            backdrop-filter: blur(4px);
        }
        .gm-msg.user .gm-bubble {
            background: linear-gradient(135deg, var(--gm-accent), #059669);
            color: #fff;
            border-top-right-radius: 6px;
            box-shadow: 0 8px 24px -10px rgba(16, 185, 129, .55);
        }
        .gm-bubble ul {
            margin: 8px 0 2px;
            padding-left: 18px;
            display: grid;
            gap: 5px;
        }
        .gm-bubble ul li {
            list-style: none;
            position: relative;
            padding-left: 14px;
        }
        .gm-bubble ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: .6em;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gm-accent-2), var(--gm-accent));
        }
        .gm-bubble strong {
            color: #fff;
            font-weight: 600;
        }
        .gm-bubble a {
            color: var(--gm-accent-2);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .gm-time {
            display: block;
            margin-top: 5px;
            font-size: .6rem;
            letter-spacing: .03em;
            color: var(--gm-muted);
            opacity: .8;
        }
        .gm-msg.user .gm-time {
            color: rgba(255, 255, 255, .72);
            text-align: right;
        }

        /* ---- typing indicator ---- */
        .gm-typing {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 14px 18px;
            border-radius: 16px;
            border-top-left-radius: 6px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid var(--gm-line);
            backdrop-filter: blur(4px);
        }
        .gm-typing span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--gm-muted);
            animation: gm-bounce 1.2s infinite ease-in-out;
        }
        .gm-typing span:nth-child(2) {
            animation-delay: .15s;
        }
        .gm-typing span:nth-child(3) {
            animation-delay: .3s;
        }
        @keyframes gm-bounce {
            0%,
            60%,
            100% {
                transform: translateY(0);
                opacity: .4;
            }
            30% {
                transform: translateY(-6px);
                opacity: 1;
            }
        }

        /* ---- suggestion chips ---- */
        .gm-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 2px;
        }
        .gm-chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(16, 185, 129, .1);
            border: 1px solid rgba(16, 185, 129, .25);
            color: #d5e2ff;
            font-family: var(--gm-font);
            font-size: .78rem;
            cursor: pointer;
            transition: .25s ease;
            text-align: left;
            font-weight: 500;
        }
        .gm-chip i {
            font-size: .7rem;
            color: var(--gm-accent-2);
            opacity: .8;
        }
        .gm-chip:hover {
            background: rgba(16, 185, 129, .22);
            border-color: var(--gm-accent);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px -6px rgba(16, 185, 129, .3);
        }
        .gm-chip:focus-visible {
            outline: 2px solid var(--gm-accent-2);
            outline-offset: 2px;
        }
        .gm-chips.gm-followup {
            margin-left: 40px;
        }
        .gm-chips.gm-followup .gm-chip {
            padding: 6px 12px;
            font-size: .72rem;
            background: rgba(255, 255, 255, .045);
            border-color: var(--gm-line);
            color: var(--gm-muted);
        }
        .gm-chips.gm-followup .gm-chip:hover {
            color: #fff;
            border-color: var(--gm-line-strong);
            background: rgba(255, 255, 255, .08);
        }

        /* ---- footer / input ---- */
        .gm-foot {
            padding: 12px 14px 14px;
            border-top: 1px solid var(--gm-line);
            background: linear-gradient(0deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0));
            flex-shrink: 0;
        }
        .gm-input-row {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            padding: 6px 6px 6px 18px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .055);
            border: 1px solid var(--gm-line);
            transition: border-color .25s ease, box-shadow .25s ease;
        }
        .gm-input-row:focus-within {
            border-color: rgba(16, 185, 129, .5);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, .13);
        }
        .gm-input {
            flex: 1;
            border: none;
            background: transparent;
            outline: none;
            resize: none;
            font-family: var(--gm-font);
            font-size: .9rem;
            line-height: 1.5;
            color: var(--gm-text);
            padding: 8px 0;
            max-height: 110px;
            min-height: 24px;
        }
        .gm-input::placeholder {
            color: var(--gm-muted);
        }
        .gm-send {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, var(--gm-accent), var(--gm-accent-2));
            color: #fff;
            font-size: .8rem;
            display: grid;
            place-items: center;
            cursor: pointer;
            flex-shrink: 0;
            transition: .25s ease;
        }
        .gm-send:hover:not(:disabled) {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 22px -8px rgba(16, 185, 129, .7);
        }
        .gm-send:disabled {
            opacity: .35;
            cursor: not-allowed;
            transform: none !important;
        }
        .gm-hint {
            margin-top: 8px;
            text-align: center;
            font-size: .62rem;
            letter-spacing: .03em;
            color: var(--gm-muted);
            opacity: .7;
        }
        .gm-hint kbd {
            font-family: 'JetBrains Mono', monospace;
            font-size: .58rem;
            padding: 1px 6px;
            border-radius: 4px;
            border: 1px solid var(--gm-line-strong);
            background: rgba(255, 255, 255, .05);
        }

        /* ---- responsive ---- */
        @media (max-width: 560px) {
            .gm-fab {
                right: 14px;
                bottom: 14px;
                width: 56px;
                height: 56px;
                padding: 0;
            }
            .gm-fab .gm-fab-icon {
                font-size: 1.3rem;
                margin: 0;
            }
            .gm-fab:hover {
                width: 160px;
            }
            .gm-fab:hover .gm-fab-label {
                max-width: 112px;
                margin-left: 8px;
            }
            .gm-panel {
                right: 10px;
                bottom: 80px;
                width: calc(100vw - 20px);
                height: calc(100dvh - 100px);
                max-height: calc(100dvh - 100px);
                border-radius: 20px;
            }
            .gm-head {
                padding: 12px 14px 10px;
            }
            .gm-avatar {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
            .gm-body {
                padding: 14px 12px 10px;
                gap: 12px;
            }
            .gm-msg {
                max-width: 96%;
            }
            .gm-bubble {
                font-size: .82rem;
                padding: 9px 12px 8px;
            }
            .gm-foot {
                padding: 10px 12px 12px;
            }
            .gm-input-row {
                padding: 5px 5px 5px 14px;
                gap: 6px;
            }
            .gm-input {
                font-size: .85rem;
                padding: 6px 0;
                min-height: 20px;
            }
            .gm-send {
                width: 34px;
                height: 34px;
                font-size: .75rem;
            }
            .gm-chips {
                gap: 6px;
                padding: 0 12px 10px;
            }
            .gm-chip {
                font-size: .75rem;
                padding: 6px 12px;
            }
            .gm-hint {
                display: none;
            }
            .gm-head-actions {
                gap: 4px;
            }
            .gm-icon-btn {
                width: 32px;
                height: 32px;
                font-size: .85rem;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .gm-fab::before,
            .gm-fab .gm-fab-icon,
            .gm-status i,
            .gm-typing span {
                animation: none !important;
            }
            .gm-panel {
                transition: opacity .2s ease, visibility .2s ease;
            }
            .gm-msg {
                animation: none;
            }
            .gm-fab:hover {
                width: 62px;
            }
            .gm-fab:hover .gm-fab-label {
                max-width: 0;
                opacity: 0;
                margin-left: 0;
            }
        }
        /* ============================================================
           SKILLS MARQUEE (moving bar)
           ============================================================ */
        .dl-marquee {
            background: #06070d;
            border-top: 1px solid rgba(255, 255, 255, .06);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            padding: 1.15rem 0;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
        }
        .dl-marquee-track {
            display: flex;
            width: max-content;
            animation: dl-marquee 32s linear infinite;
        }
        .dl-marquee-track:hover { animation-play-state: paused; }
        .dl-marquee-track span {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 0 1.4rem;
            font-family: 'Amiri', serif;
            font-weight: 700;
            font-size: 1.15rem;
            letter-spacing: .02em;
            color: #dbe4ff;
            white-space: nowrap;
        }
        .dl-marquee-track span i { color: #4d7fff; font-size: .8rem; }
        .dl-marquee-track span .dl-msep { color: rgba(255, 255, 255, .25); font-size: .6rem; }
        @keyframes dl-marquee { to { transform: translateX(-50%); } }
        @media (prefers-reduced-motion: reduce) {
            .dl-marquee-track { animation: none; }
        }

        /* marquee section title (Academic-style) */
        .sk-skillbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3.2rem 20px 1.5rem;
            text-align: center;
        }
        .sk-title {
            display: inline-block;
            position: relative;
            font-family: 'Amiri', serif;
            font-size: 2rem;
            font-weight: 700;
            color: #151a30;
            margin: 0;
        }
        .sk-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            right: 50%;
            transform: translateX(50%);
            width: 64px;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(90deg, #10b981, #06b6d4);
        }

        /* ============================================================
           SKILLS & TECHNOLOGY STACK
           ============================================================ */
        .skills-section {
            padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
            background: #F1F9F6;
            border-radius: 0;
            box-shadow: none;
            border: none;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-top: -80px;
            margin-bottom: 0;
            font-family: 'Amiri', serif;
        }

        .skills-main-title {
            text-align: center;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: #151a30;
            margin-bottom: 2.5rem;
            font-family: 'Amiri', serif;
        }

        .skills-category-title {
            text-align: center;
            margin: 0 0 2.5rem;
            position: relative;
        }

        .skills-category-title span {
            background: linear-gradient(135deg, #10b981, #06b6d4);
            color: white;
            padding: 0.5rem 2rem;
            border-radius: 50px;
            font-size: 1.5rem;
            font-weight: 600;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 2rem;
            margin: 0 clamp(1rem, 3vw, 2rem);
        }

        .skill-item {
            text-align: center;
        }

        .skill-circle {
            width: 110px;
            height: 110px;
            margin: 0 auto 0.8rem;
            border-radius: 50%;
            background: conic-gradient(#10b981 var(--percent, 0%), #e5e7eb 0);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: skillRotateIn 0.8s ease;
        }

        @keyframes skillRotateIn {
            from { transform: rotate(-180deg) scale(0); opacity: 0; }
            to { transform: rotate(0) scale(1); opacity: 1; }
        }

        .skill-circle:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }

        .skill-circle-inner {
            width: 82px;
            height: 82px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #10b981;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .skill-circle-inner img {
            width: 42px;
            height: 42px;
            object-fit: contain;
        }

        .skill-item h4 {
            font-size: 0.95rem;
            color: #334155;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* ============================================================
           AI TOOLS SECTION — SERVICES STYLE
           ============================================================ */

        

        /* ---- Responsive ---- */
        @media (max-width: 992px) {
            .skills-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 1.5rem;
            }
            .skill-circle {
                width: 95px;
                height: 95px;
            }
            .skill-circle-inner {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            .skill-circle-inner img {
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 768px) {
            .skills-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.2rem;
            }
            .skill-circle {
                width: 85px;
                height: 85px;
            }
            .skill-circle-inner {
                width: 64px;
                height: 64px;
                font-size: 1.6rem;
            }
            .skill-circle-inner img {
                width: 32px;
                height: 32px;
            }
            .skills-category-title span {
                font-size: 1.2rem;
                padding: 0.4rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .skills-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
            .skill-circle {
                width: 75px;
                height: 75px;
            }
            .skill-circle-inner {
                width: 56px;
                height: 56px;
                font-size: 1.4rem;
            }
            .skill-circle-inner img {
                width: 28px;
                height: 28px;
            }
            .skill-item h4 {
                font-size: 0.85rem;
            }
            .skills-category-title span {
                font-size: 1.1rem;
                padding: 0.3rem 1.2rem;
            }
        }


/* ============================================================
   STATISTICS & CLIENT SATISFACTION — Premium Editorial Layout
   ============================================================ */
.stats-section {
    position: relative;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(170deg, #0c0e18 0%, #060810 50%, #0a0c14 100%);
    overflow: hidden;
}

/* Animated background orbs */
.stats-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}
.stats-orb-1 { width: 500px; height: 500px; background: rgba(77,127,255,0.2); top: -150px; right: -100px; animation: orbDrift 12s ease-in-out infinite alternate; }
.stats-orb-2 { width: 400px; height: 400px; background: rgba(16,185,129,0.15); bottom: -100px; left: -80px; animation: orbDrift 15s ease-in-out infinite alternate-reverse; }
.stats-orb-3 { width: 300px; height: 300px; background: rgba(139,92,246,0.12); top: 40%; left: 40%; animation: orbDrift 10s ease-in-out infinite alternate; }
@keyframes orbDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -30px) scale(1.15); }
}

/* Grid lines overlay */
.stats-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
}

/* Main layout */
.stats-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* ===== HERO CARD (Left) ===== */
.stats-hero-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.stats-hero-card.visible {
    opacity: 1;
    transform: translateX(0);
}
.stats-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(77,127,255,0.3), transparent 40%, transparent 60%, rgba(16,185,129,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.stats-hero-card:hover {
    border-color: rgba(77,127,255,0.15);
    box-shadow: 0 30px 80px -20px rgba(77,127,255,0.1);
}

/* Hero ring */
.hero-ring-container {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}
.hero-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.hero-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 8;
}
.hero-ring-fill {
    fill: none;
    stroke: url(#heroGrad);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 553;
    stroke-dashoffset: 553;
    transition: stroke-dashoffset 2s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 0 12px rgba(77,127,255,0.4));
}
.hero-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-counter-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.hero-number {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #f2f2f4;
    line-height: 1;
}
.hero-suffix {
    font-family: 'Amiri', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4d7fff, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-ring-label {
    font-family: 'Amiri', serif;
    font-size: 0.8rem;
    color: #5c5c64;
    margin-top: 2px;
}

/* Hero info */
.hero-card-info {
    flex: 1;
}
.hero-card-title {
    font-family: 'Amiri', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f2f2f4;
    margin-bottom: 0.5rem;
}
.hero-card-desc {
    font-family: 'Amiri', serif;
    font-size: 0.9rem;
    color: #9a9aa2;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.hero-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.hctag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-size: 0.72rem;
    color: #10b981;
}

/* ===== RIGHT COLUMN ===== */
.stats-side-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stats-side-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.stats-side-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(77,127,255,0.08);
    border: 1px solid rgba(77,127,255,0.15);
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4d7fff;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
}
.stats-badge i { font-size: 0.7rem; }

.stats-headline {
    font-family: 'Amiri', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #f2f2f4;
    line-height: 1.2;
}
.stats-accent {
    background: linear-gradient(135deg, #4d7fff, #10b981, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 4s ease-in-out infinite;
}
@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mini cards grid */
.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.stat-mini-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.1rem 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}
.stat-mini-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.stat-mini-card:hover {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px -10px rgba(0,0,0,0.4);
}

.stat-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}
.sm-green  { background: rgba(16,185,129,0.1); color: #10b981; }
.sm-amber  { background: rgba(245,158,11,0.1); color: #f59e0b; }
.sm-purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.sm-blue   { background: rgba(77,127,255,0.1); color: #4d7fff; }

.stat-mini-content {
    margin-bottom: 0.6rem;
}
.stat-mini-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 0.15rem;
}
.stat-mini-value .stat-number {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f2f2f4;
    line-height: 1;
}
.stat-suffix {
    font-family: 'Amiri', serif;
    font-size: 1rem;
    font-weight: 700;
}
.smc-green  { color: #10b981; }
.smc-amber  { color: #f59e0b; }
.smc-purple { color: #8b5cf6; }
.smc-blue   { color: #4d7fff; }

.stat-mini-label {
    font-family: 'Amiri', serif;
    font-size: 0.78rem;
    color: #5c5c64;
}

/* Mini progress bars */
.stat-mini-bar {
    height: 3px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}
.stat-mini-bar-fill {
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.smbf-green  { background: linear-gradient(90deg, #10b981, #34d399); }
.smbf-amber  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.smbf-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.smbf-blue   { background: linear-gradient(90deg, #4d7fff, #7aa5ff); }

/* Mini stars */
.stat-mini-stars {
    display: flex;
    gap: 2px;
}
.stat-mini-stars i {
    color: #f59e0b;
    font-size: 0.7rem;
}

/* ===== TRUST ROW ===== */
.stats-trust-row {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.stats-trust-row.visible {
    opacity: 1;
    transform: translateY(0);
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-size: 0.78rem;
    color: #9a9aa2;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.trust-pill:hover {
    border-color: rgba(16,185,129,0.2);
    color: #10b981;
}
.trust-pill i { color: #10b981; font-size: 0.7rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .stats-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats-hero-card {
        flex-direction: column;
        text-align: center;
    }
    .hero-card-tags { justify-content: center; }
    .stats-mini-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .stats-section { padding: 3rem 1rem 2.5rem; }
    .stats-mini-grid { grid-template-columns: 1fr; }
    .stats-trust-row { flex-direction: column; align-items: center; }
    .hero-ring-container { width: 130px; height: 130px; }
    .hero-number { font-size: 2.4rem; }
    .stat-mini-value .stat-number { font-size: 1.5rem; }
}

        /* ============================================================
   CONTACT SECTION — متطابق مع باقي الأقسام
   ============================================================ */
.contact-section {
    padding: 4rem 1.5rem 2rem;
    background: #F1F9F6;
    margin: 0 -20px;
    border-top: 1px solid rgba(16, 185, 129, 0.08);
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    text-align: center;
}
.contact-section .section-label {
    color: #000;
}

/* ===== النص الوصفي بنفس خط التسميات ===== */
.contact-subtitle {
    font-family: 'Amiri', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #64748b;
    max-width: 500px;
    margin: 0.5rem auto 3rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* ===== الأيقونات الدائرية (حواف دائرية كاملة) ===== */
.connect-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.connect-btn {
    width: 82px;
    height: 82px;
    border-radius: 50%; /* حواف دائرية كاملة */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 2.2rem;
    color: #1e293b;
    position: relative;
}

/* ألوان المنصات الأصلية */
.connect-btn[data-platform="whatsapp"] { color: #25D366; }
.connect-btn[data-platform="telegram"] { color: #26A5E4; }
.connect-btn[data-platform="email"]    { color: #EA4335; }
.connect-btn[data-platform="discord"]  { color: #5865F2; }
.connect-btn[data-platform="linkedin"] { color: #0A66C2; }

.connect-btn:hover {
    transform: translateY(-10px) scale(1.06);
    background: #ffffff;
    box-shadow: 0 24px 48px -14px rgba(0, 0, 0, 0.18);
    border-color: transparent;
}

.connect-btn i {
    transition: transform 0.3s ease;
}

.connect-btn:hover i {
    transform: scale(1.1);
}

/* ===== زر "Go to Messages" مطابق تماماً لـ "Let's work together" ===== */
/* تم إعادة استخدام class .simple-btn الموجود مسبقاً في الملف،
   ولكن نضيف هنا بعض الضبط الإضافي لتناسق الأيقونات داخل الزر */
.connect-action .simple-btn {
    font-family: 'Amiri', serif; /* نفس خط القسم العربي */
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    gap: 0.8rem;
}

.connect-action .simple-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
    gap: 1.2rem; /* تزيد المسافة عند المرور مثل الزر الأصلي */
}

.connect-action .simple-btn i {
    transition: transform 0.3s ease;
}

.connect-action .simple-btn:hover i:first-child {
    transform: rotate(-10deg);
}

.connect-action .simple-btn:hover i:last-child {
    transform: translateX(5px);
}

/* ===== Contact Cards ===== */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-profile-card {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.contact-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 1rem;
    border: none;
    box-shadow: none;
}

.profile-info {
    padding: 1.5rem;
}

.profile-status {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.profile-name {
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.profile-role {
    font-family: 'Amiri', serif;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.profile-langs-label {
    font-family: 'Amiri', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.profile-langs-label i {
    color: #4d7fff;
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

.profile-languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}
.lang-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
}
.lang-tag small {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 400;
}
.lang-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.profile-socials {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.info-card-title {
    font-family: 'Amiri', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0;
}

.info-details {
    flex: 1;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.info-value {
    font-family: 'Amiri', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.info-percent {
    font-family: 'Amiri', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
}

.info-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.info-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    border-radius: 3px;
    transition: width 1s ease;
}

.info-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.info-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.contact-availability {
    margin-top: 3rem;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(6, 182, 212, 0.06));
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #10b981;
    margin-bottom: 1.2rem;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.availability-text {
    font-family: 'Amiri', serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

.availability-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.avail-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: white;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.avail-tag i {
    color: #10b981;
    font-size: 0.8rem;
}

.avail-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
    padding: 0.85rem 2.5rem;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Amiri', serif;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.avail-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== التجاوب (Responsive) ===== */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0 4rem;
        margin: 0 -20px;
        width: calc(100% + 40px);
    }

    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.2rem;
        padding: 0 1rem;
    }

    .contact-cards {
        padding: 0 1rem;
    }

    .connect-icons {
        display: none;
    }

    .contact-availability {
        margin-top: 2rem;
        padding: 2rem 1.2rem;
    }

    .availability-text {
        font-size: 1rem;
    }

    .availability-tags {
        gap: 0.5rem;
    }

    .avail-tag {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .avail-project-btn {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
}

/* ============================================================
   HEADER & HERO — Premium with Image Background
   ============================================================ */

/* ----- HERO WRAPPER ----- */
.hero-wrapper {
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: -40px;
    background: #000;
}

/* ----- HEADER ----- */
.gm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 3.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

.gm-header.scrolled {
    background: rgba(0, 0, 0, 0.92);
    background-image: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gm-header.scrolled .gm-logo {
    color: #ffffff;
}

.gm-header.scrolled .gm-nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.gm-header.scrolled .gm-nav-link:hover,
.gm-header.scrolled .gm-nav-link.active {
    color: #ffffff;
}

.gm-header.scrolled .gm-header-icon {
    color: rgba(255, 255, 255, 0.8);
}

.gm-header.scrolled .gm-header-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.gm-header.scrolled .gm-header-menu span {
    background: #ffffff;
}

.gm-header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.gm-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Amiri', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.gm-logo:hover {
    opacity: 0.7;
}

/* Navigation */
.gm-nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.gm-nav-chat-header,
.gm-nav-link i {
    display: none;
}

.gm-nav-link {
    font-family: 'Amiri', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.gm-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #10b981;
    transition: width 0.3s ease;
}

.gm-nav-link:hover,
.gm-nav-link.active {
    color: #ffffff;
}

.gm-nav-link:hover::after,
.gm-nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.gm-header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.gm-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gm-header-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Mobile Menu Toggle */
.gm-header-menu {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.gm-header-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.gm-header-menu.active i::before {
    content: "\f00d";
}

.gm-header.scrolled .gm-header-menu {
    color: #ffffff;
    border-color: transparent;
}

.gm-header.scrolled .gm-header-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ----- HERO SECTION ----- */
.gm-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #000;
}

/* Image background */
.gm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gm-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.gm-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Hero Inner Layout */
.gm-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Hero Content */
.gm-hero-content {
    max-width: 580px;
    padding-top: 80px;
}

.gm-hero-tag {
    font-family: 'Amiri', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.gm-hero-title {
    font-family: 'Amiri', serif;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gm-hero-highlight {
    color: #10b981;
}

.gm-hero-desc {
    font-family: 'Amiri', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.gm-hero-desc strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Hero Buttons */
.gm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gm-btn-primary,
.gm-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Amiri', serif;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
}

.gm-btn-primary {
    background: #10b981;
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.gm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.gm-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(16, 185, 129, 0.4);
}

.gm-btn-secondary:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: #10b981;
    transform: translateY(-3px);
}

/* Side vertical text */
.gm-hero-side-text {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 4;
}

.gm-hero-side-text span {
    font-family: 'Amiri', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #10b981;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Scroll indicator */
.gm-hero-scroll-wrap {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gm-hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #10b981);
    animation: gm-scroll-pulse 2s ease-in-out infinite;
}

.gm-hero-scroll-text {
    font-family: 'Amiri', serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #10b981;
    text-transform: uppercase;
}

@keyframes gm-scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes gm-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-wrapper {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .gm-hero-title {
        font-size: 3.5rem;
    }
    .gm-hero-inner {
        padding: 0 2.5rem;
    }
    .gm-header {
        padding: 0 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .gm-nav {
        position: fixed;
        top: 75px;
        right: 16px;
        left: auto;
        transform: scale(0.8);
        transform-origin: top right;
        width: 85%;
        max-width: 280px;
        height: auto;
        background: rgba(20, 20, 28, 0.98);
        backdrop-filter: blur(30px);
        padding: 0;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 999;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
        opacity: 0;
        pointer-events: none;
        overflow: visible;
    }

    .gm-nav::before {
        content: '';
        position: absolute;
        top: -8px;
        right: 20px;
        width: 16px;
        height: 16px;
        background: rgba(20, 20, 28, 0.98);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        transform: rotate(45deg);
    }

    .gm-nav.open {
        transform: scale(1);
        opacity: 1;
        pointer-events: all;
    }

    .gm-nav-chat {
        padding: 0;
    }

    .gm-nav-chat-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 20px 24px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .gm-nav-chat-dot {
        width: 8px;
        height: 8px;
        background: #10b981;
        border-radius: 50%;
        animation: chatPulse 2s ease-in-out infinite;
    }

    @keyframes chatPulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(0.8); }
    }

    .gm-nav-chat-title {
        font-family: 'Amiri', serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .gm-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        backdrop-filter: blur(8px);
    }

    .gm-nav-overlay.active {
        display: block;
    }

    .gm-nav-list {
        flex-direction: column;
        gap: 6px;
        padding: 12px;
    }

    .gm-nav-list li {
        border-bottom: none;
    }

    .gm-nav-bubble {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        transition-delay: calc(var(--i) * 0.08s);
    }

    .gm-nav.open .gm-nav-bubble {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .gm-nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
        padding: 14px 18px;
        color: rgba(255, 255, 255, 0.75);
        transition: all 0.3s ease;
        border-radius: 50px;
        margin: 0 4px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .gm-nav-link i {
        font-size: 0.95rem;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(16, 185, 129, 0.15);
        border-radius: 50%;
        color: #10b981;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .gm-nav-link:hover,
    .gm-nav-link.active {
        color: #ffffff;
        background: rgba(16, 185, 129, 0.12);
    }

    .gm-nav-link:hover i,
    .gm-nav-link.active i {
        background: rgba(16, 185, 129, 0.3);
        color: #10b981;
    }

    .gm-nav-link::after {
        display: none;
    }

    .gm-header-menu {
        display: flex;
        z-index: 1001;
    }

    .gm-hero-title {
        font-size: 3rem;
    }

    .gm-hero-side-text {
        display: none;
    }

    .gm-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .gm-header {
        padding: 0 1.5rem;
        height: 70px;
    }

    .gm-header-icon {
        display: none;
    }

    .gm-hero-inner {
        padding: 0 1.5rem;
        justify-content: center;
        text-align: center;
    }

    .gm-hero-content {
        max-width: 100%;
    }

    .gm-hero-title {
        font-size: 2.5rem;
    }

    .gm-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .gm-hero-actions {
        justify-content: center;
    }

    .gm-hero-scroll-wrap {
        bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-wrapper {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .gm-header {
        padding: 0 1rem;
    }

    .gm-logo {
        font-size: 1.4rem;
    }

    .gm-nav {
        width: 90%;
        max-width: 300px;
    }

    .gm-nav-list {
        padding: 8px;
    }

    .gm-nav-link {
        font-size: 0.9rem;
        padding: 12px 14px;
    }

    .gm-hero-inner {
        padding: 0 1rem;
    }

    .gm-hero-title {
        font-size: 2rem;
    }

    .gm-hero-tag {
        font-size: 0.7rem;
    }

    .gm-hero-desc {
        font-size: 0.9rem;
    }

    .gm-btn-primary,
    .gm-btn-secondary {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gm-hero-scroll-line {
        animation: none;
    }
}

/* ============================================================
    FOOTER
   ============================================================ */
.gm-footer {
    position: relative;
    background: #0a0c14;
    padding: 0;
    margin: 0 -20px 0 -20px;
    width: calc(100% + 40px);
}

.gm-footer-wave {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-bottom: -2px;
}

.gm-footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.gm-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.gm-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 2rem 0 2rem;
}

/* Brand */
.gm-footer-logo {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gm-footer-tagline {
    font-family: 'Amiri', serif;
    font-size: 1rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.gm-footer-desc {
    font-family: 'Amiri', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 300px;
}

/* Links Columns */
.gm-footer-col h4 {
    font-family: 'Amiri', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    position: relative;
}

.gm-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #10b981;
    border-radius: 2px;
}

.gm-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gm-footer-col li {
    margin-bottom: 0.7rem;
}

.gm-footer-col a {
    font-family: 'Amiri', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gm-footer-col a:hover {
    color: #10b981;
    transform: translateX(4px);
}

/* Newsletter */
.gm-footer-newsletter h4 {
    font-family: 'Amiri', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.gm-footer-newsletter p {
    font-family: 'Amiri', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.gm-footer-form {
    display: flex;
    gap: 0;
}

.gm-footer-input {
    flex: 1;
    padding: 0.75rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 50px 0 0 50px;
    color: #fff;
    font-family: 'Amiri', serif;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.gm-footer-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.gm-footer-input:focus {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.gm-footer-btn {
    padding: 0.75rem 1.2rem;
    background: #10b981;
    border: none;
    border-radius: 0 50px 50px 0;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gm-footer-btn:hover {
    background: #0ea572;
    transform: scale(1.05);
}

/* Divider */
.gm-footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    margin: 0;
}

/* Bottom */
.gm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 0;
}

.gm-footer-copy {
    font-family: 'Amiri', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.gm-footer-socials {
    display: flex;
    gap: 1rem;
}

.gm-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gm-footer-socials a:hover {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .gm-footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
    .gm-footer-brand {
        grid-column: span 1;
    }
    .gm-footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .gm-footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .gm-footer-brand,
    .gm-footer-newsletter {
        grid-column: span 1;
    }
    .gm-footer-desc {
        max-width: 100%;
        margin: 0 auto;
    }
    .gm-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .gm-footer-form {
        max-width: 100%;
        margin: 0 auto;
    }
    .gm-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gm-footer-inner {
        padding: 0 1rem 1.5rem;
    }
    .gm-footer-logo {
        font-size: 1.6rem;
    }
    .gm-footer-form {
        flex-direction: column;
        gap: 10px;
    }
    .gm-footer-input {
        border-radius: 50px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }
    .gm-footer-btn {
        border-radius: 50px;
        padding: 0.75rem 2rem;
    }
    .gm-footer-socials a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   IMAGE LIGHTBOX
   ============================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-container {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #111;
}
.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.lightbox-close:hover {
    background: rgba(255, 60, 60, 0.7);
    transform: scale(1.1);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(77, 127, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-caption {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-family: 'Amiri', serif;
    text-align: center;
}
.lightbox-counter {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-family: 'Amiri', serif;
}
@media (max-width: 900px) {
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .lightbox-close {
        top: -10px;
        right: -10px;
        width: 38px;
        height: 38px;
    }
}
@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .lightbox-img {
        border-radius: 8px;
    }
}

/* ============================================================
   SWEETALERT2 CUSTOM
   ============================================================ */
.swal-custom-popup {
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
    padding: 2rem 1.5rem !important;
}
.swal-custom-title {
    font-family: 'Amiri', serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #f2f2f4 !important;
    margin-bottom: 0.5rem !important;
}
.swal2-icon {
    width: 60px !important;
    height: 60px !important;
    border: 3px solid #4d7fff !important;
    border-radius: 50% !important;
    margin: 0 auto 1rem !important;
}
.swal2-icon .swal2-icon-content {
    font-size: 1.6rem !important;
}
.swal2-icon.swal2-info {
    color: #4d7fff !important;
}
.swal-custom-btn {
    border-radius: 50px !important;
    padding: 0.6rem 2.5rem !important;
    font-family: 'Amiri', serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.swal-custom-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5) !important;
}
.swal-custom-cancel {
    border-radius: 50px !important;
    padding: 0.6rem 2rem !important;
    font-family: 'Amiri', serif !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #9a9aa2 !important;
    transition: background 0.2s, color 0.2s !important;
}
.swal-custom-cancel:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #f2f2f4 !important;
}
.swal2-html-container {
    margin: 0.5rem 0 0 !important;
}

/* ============================================================
   CONTACT FORM (Formspree)
   ============================================================ */
.contact-form-wrapper {
    max-width: 680px;
    margin: 2.5rem auto 0;
}
.contact-cta-text {
    font-family: 'Amiri', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 1rem;
}
.contact-form-card {
    background: var(--window, #111115);
    border: 1px solid var(--border, rgba(255,255,255,.08));
    border-radius: 18px;
    padding: 2rem;
}
.contact-form-title {
    font-family: 'Amiri', serif;
    font-size: 1.2rem;
    color: var(--text, #f2f2f4);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}
.contact-form-title i {
    color: #10b981;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form .form-group {
    margin-bottom: 1rem;
}
.contact-form label {
    display: block;
    font-family: 'Amiri', serif;
    font-size: 0.85rem;
    color: var(--text-dim, #9a9aa2);
    margin-bottom: 6px;
}
.contact-form .form-control {
    width: 100%;
    padding: 13px 18px;
    background: var(--panel, #18181c);
    border: 1px solid var(--border, rgba(255,255,255,.08));
    border-radius: 50px;
    color: var(--text, #f2f2f4);
    font-family: 'Amiri', serif;
    font-size: 0.95rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}
.contact-form .form-control:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.contact-form .form-control.is-valid {
    border-color: #10b981;
}
.contact-form .form-control.is-invalid {
    border-color: #ef4444;
}
.contact-form textarea.form-control {
    border-radius: 16px;
    resize: vertical;
    min-height: 120px;
}
.field-error {
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 4px;
    font-family: 'Amiri', serif;
    min-height: 0;
}
.cf-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-family: 'Amiri', serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    margin-top: 0.5rem;
}
.cf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}
.cf-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 1.2rem;
        border-radius: 4px;
    }
    .contact-form .form-control {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    .cf-submit-btn {
        padding: 13px;
        font-size: 0.95rem;
    }
}
