/*
 * TULPAR WEB â€” Penta-Style Premium v6.0
 * Dark Navy Base Â· Bright Cyan Accent Â· Bold Typography
 * Inspired by pentayazilim.com design language
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Inter:wght@400;500;600&display=swap');

/* â”€â”€â”€ TOKENS â”€â”€â”€ */
:root {
    --navy: #0A0E1A;
    --navy2: #0F1628;
    --navy3: #151D35;
    --navy4: #1C2640;
    --cyan: #00C8E0;
    --cyan2: #00A8C0;
    --cyan-glow: rgba(0, 200, 224, 0.3);
    --coral: #E85C4A;
    --white: #FFFFFF;
    --off-white: #F4F7FE;
    --text: #FFFFFF;
    --text2: #94A7C4;
    --text3: #5A6E8D;
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(0, 200, 224, 0.2);
    --font: 'Poppins', 'Inter', system-ui, sans-serif;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --top-h: 56px;
    --nav-h: 88px;
    --mob-nav-h: 74px;
}

/* â”€â”€â”€ RESET â”€â”€â”€ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--navy);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

@media(max-width:768px) {
    body {
        padding-bottom: var(--mob-nav-h);
    }
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 99px;
}

/* â”€â”€â”€ KEYFRAMES â”€â”€â”€ */
@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 var(--cyan-glow);
    }

    70% {
        box-shadow: 0 0 0 20px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes loader-fill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes count-in {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* â”€â”€â”€ LOADER â”€â”€â”€ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.out {
    opacity: 0;
    visibility: hidden;
}

#loader img {
    height: 60px;
    animation: float 2s ease-in-out infinite;
}

.ld-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
}

.ld-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--cyan), var(--coral));
    animation: loader-fill 1.5s ease-out forwards;
}

/* â”€â”€â”€ PAGE WARP â”€â”€â”€ */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* â”€â”€â”€ NAVBAR & MOBILE NAV STYLES MOVED TO MUDULAR FILES â”€â”€â”€ */


/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    border-radius: var(--r);
    padding: 14px 28px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    transform: scale(0.96) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan2), var(--cyan));
    color: var(--navy);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 200, 224, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--border2);
    color: var(--cyan);
    background: rgba(0, 200, 224, 0.06);
}

.btn-coral {
    background: linear-gradient(135deg, #D14939, var(--coral));
    color: #fff;
}

.btn-coral:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 92, 74, 0.4);
}

.btn-lg {
    padding: 17px 36px;
    font-size: 0.95rem;
    border-radius: var(--r-lg);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.8rem;
}

.btn-pill {
    border-radius: 99px;
}

/* â”€â”€â”€ LAYOUT â”€â”€â”€ */
.wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 36px;
}

.wrap-sm {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 36px;
}

@media(max-width:640px) {

    .wrap,
    .wrap-sm {
        padding: 0 20px;
    }
}

.section {
    padding: 110px 0;
}

.section-sm {
    padding: 70px 0;
}

@media(max-width:768px) {
    .section {
        padding: 72px 0;
    }

    .section-sm {
        padding: 44px 0;
    }
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.hero {
    min-height: 100svh;
    padding-top: var(--nav-h);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

/* Mesh gradient background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0, 200, 224, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(232, 92, 74, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 90% 10%, rgba(0, 150, 200, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 224, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 224, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

/* â”€â”€â”€ TYPOGRAPHY â”€â”€â”€ */
.t-display {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.97;
    letter-spacing: -0.04em;
}

.t-hero {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.t-xl {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.t-lg {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.g-cyan {
    background: linear-gradient(135deg, #00C8E0 0%, #4DDDEE 50%, #00A8C0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

.g-coral {
    background: linear-gradient(135deg, #FF7B6A, var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan {
    color: var(--cyan);
}

.text-coral {
    color: var(--coral);
}

.text-muted {
    color: var(--text2);
}

.text-dim {
    color: var(--text3);
}

/* â”€â”€â”€ TAG â”€â”€â”€ */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 224, 0.09);
    border: 1px solid rgba(0, 200, 224, 0.2);
    color: var(--cyan);
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-ring 2s ease-in-out infinite;
}

/* â”€â”€â”€ SECTION HEADER â”€â”€â”€ */
.sec-h {
    margin-bottom: 64px;
}

.sec-h.center {
    text-align: center;
}

.sec-h.center p {
    max-width: 560px;
    margin: 1rem auto 0;
}

.sec-h p {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.sec-h .tag {
    margin-bottom: 18px;
}

/* â”€â”€â”€ TRUST ROW â”€â”€â”€ */
.trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

@media(max-width:900px) {
    .trust {
        justify-content: center;
    }
}

.av-stack {
    display: flex;
}

.av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: linear-gradient(135deg, var(--cyan2), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.6rem;
    color: #fff;
    margin-left: -8px;
}

.av:first-child {
    margin-left: 0;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
}

/* â”€â”€â”€ FLOATING CARD â”€â”€â”€ */
.float-card {
    background: rgba(21, 29, 53, 0.9);
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 14px 18px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    white-space: nowrap;
}

.fc-val {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
}

.fc-key {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
}

/* â”€â”€â”€ HERO VISUAL â”€â”€â”€ */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:900px) {
    .hero-right {
        display: none;
    }
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 224, 0.22), transparent 65%);
}

.hero-img-wrap {
    position: relative;
    z-index: 1;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 200, 224, 0.12);
    animation: float 7s ease-in-out infinite;
    max-width: 440px;
    width: 100%;
}

.hero-img-wrap img {
    width: 100%;
    display: block;
}

.fc-1 {
    position: absolute;
    top: -20px;
    left: -20px;
    animation: float 4.5s 0s ease-in-out infinite;
}

.fc-2 {
    position: absolute;
    bottom: 30px;
    right: -20px;
    animation: float 4.5s 1s ease-in-out infinite;
}

.fc-3 {
    position: absolute;
    bottom: -18px;
    left: 30px;
    animation: float 4.5s 1.8s ease-in-out infinite;
}

/* â”€â”€â”€ MARQUEE â”€â”€â”€ */
.marquee-wrap {
    background: var(--navy3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.m-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.m-sep {
    color: var(--cyan);
    font-size: 0.9rem;
}

/* â”€â”€â”€ STATS â”€â”€â”€ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

@media(max-width:900px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.stat-cell {
    background: var(--navy2);
    padding: 36px 28px;
    text-align: center;
    transition: background 0.3s;
}

.stat-cell:hover {
    background: rgba(0, 200, 224, 0.05);
}

.stat-big {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* â”€â”€â”€ SERVICE CARDS â”€â”€â”€ */
.svcs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
}

@media(max-width:900px) {
    .svcs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .svcs-grid {
        grid-template-columns: 1fr;
    }
}

.svc-card {
    background: var(--navy2);
    padding: 2.5rem;
    cursor: default;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.svc-card:hover {
    background: rgba(0, 200, 224, 0.05);
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-emoji {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    display: block;
}

.svc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-card p {
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.svc-arrow {
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.svc-card:hover .svc-arrow {
    gap: 12px;
}

/* â”€â”€â”€ WHY GRID (Bento) â”€â”€â”€ */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

@media(max-width:900px) {
    .bento {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .bento {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover {
    border-color: var(--border2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.bento-card.wide {
    grid-column: span 2;
}

@media(max-width:900px) {
    .bento-card.wide {
        grid-column: span 1;
    }
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bc-cyan {
    background: rgba(0, 200, 224, 0.12);
}

.bc-coral {
    background: rgba(232, 92, 74, 0.12);
}

.bc-violet {
    background: rgba(139, 92, 246, 0.12);
}

.bento-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    color: var(--text2);
    font-size: 0.87rem;
    line-height: 1.7;
}

.bento-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 6px;
}

/* â”€â”€â”€ PORTFOLIO â”€â”€â”€ */
.port-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media(max-width:640px) {
    .port-grid {
        grid-template-columns: 1fr;
    }
}

.port-card {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--navy3);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
}

.port-card:hover {
    border-color: var(--border2);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.port-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 26, 0.96) 0%, transparent 55%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.35s;
}

.port-card:hover .port-overlay {
    opacity: 1;
}

.port-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.port-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.port-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.port-card:hover .port-arrow {
    transform: scale(1.1) rotate(45deg);
}

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media(max-width:900px) {
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

.testi {
    background: var(--navy2);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px;
    transition: all 0.3s;
}

.testi:hover {
    border-color: var(--border2);
    transform: translateY(-4px);
}

.t-stars {
    color: var(--cyan);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.t-quote {
    color: var(--text2);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.88rem;
}

.t-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan2), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
}

.t-name {
    font-size: 0.88rem;
    font-weight: 700;
    display: block;
}

.t-role {
    font-size: 0.75rem;
    color: var(--text3);
}

/* â”€â”€â”€ CTA â”€â”€â”€ */
.cta-wrap {
    background: linear-gradient(135deg, var(--navy3) 0%, rgba(0, 200, 224, 0.05) 100%);
    border: 1px solid var(--border2);
    border-radius: var(--r-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media(max-width:640px) {
    .cta-wrap {
        padding: 50px 24px;
    }
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(0, 200, 224, 0.15), transparent 65%);
}

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.footer {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    padding: 72px 0 32px;
}

@media(max-width:768px) {
    .footer {
        padding: 50px 0 24px;
    }
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px;
}

@media(max-width:1024px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media(max-width:640px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.foot-col h5 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 16px;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.foot-col ul a {
    color: var(--text2);
    font-size: 0.88rem;
    transition: color 0.2s;
}

.foot-col ul a:hover {
    color: var(--cyan);
}

.foot-desc {
    color: var(--text2);
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 14px 0 22px;
    max-width: 280px;
}

.f-social {
    display: flex;
    gap: 10px;
}

.f-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    transition: all 0.2s;
}

.f-btn:hover {
    border-color: var(--border2);
    color: var(--cyan);
    background: rgba(0, 200, 224, 0.08);
}

.foot-line {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text3);
}

.foot-bottom a {
    color: var(--text3);
    transition: color 0.2s;
}

.foot-bottom a:hover {
    color: var(--cyan);
}

/* â”€â”€â”€ WA FAB â”€â”€â”€ */
.wa-fab {
    position: fixed;
    bottom: calc(var(--mob-nav-h)+16px);
    right: 20px;
    z-index: 400;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

@media(min-width:769px) {
    .wa-fab {
        bottom: 30px;
    }
}

.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

/* â”€â”€â”€ REVEAL â”€â”€â”€ */
.rev {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.rev.rl {
    transform: translateX(-36px);
}

.rev.rr {
    transform: translateX(36px);
}

.rev.on {
    opacity: 1 !important;
    transform: none !important;
}

/* â”€â”€â”€ MISC â”€â”€â”€ */
.flex-c {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-b {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-g {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media(max-width:900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-6 {
    margin-bottom: 48px;
}

/* â”€â”€â”€ MOBILE FOOTER BAR â”€â”€â”€ */
.mobile-footer-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 768px) {
    .mobile-footer-bar {
        display: flex;
    }
}

.mfb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    text-decoration: none;
    font-size: 0.62rem;
    font-weight: 700;
    gap: 4px;
    flex: 1;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-tap-highlight-color: transparent;
}

.mfb-item i {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
}

.mfb-item:active i {
    transform: scale(0.9);
}

.mfb-item.active,
.mfb-item:hover {
    color: var(--cyan);
}

.mfb-item.active i {
    filter: drop-shadow(0 0 8px var(--cyan-glow));
}
.mfb-center-wrap {
    position: relative;
    width: 80px;
    display: flex;
    justify-content: center;
}

.mfb-item.prominent {
    position: absolute;
    bottom: 5px;
    color: var(--cyan);
    height: auto;
    width: auto;
    gap: 6px;
}

.prominent-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: 0 8px 25px rgba(0, 200, 224, 0.4), 0 0 0 5px rgba(10, 14, 26, 1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mfb-item.prominent i {
    width: 28px;
    height: 28px;
}

.mfb-item.prominent:hover .prominent-inner {
    transform: scale(1.1) translateY(-5px);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3), 0 0 0 5px rgba(10, 14, 26, 1);
}

.mfb-item.prominent span {
    color: var(--text3);
    font-size: 0.65rem;
}

/* ¦¦¦ PROJECT WIZARD MODAL ¦¦¦ */
.wizard-modal {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.4s;
}
.wizard-modal.open { opacity: 1; visibility: visible; }
.wizard-backdrop { position: absolute; inset: 0; background: rgba(5, 8, 15, 0.9); backdrop-filter: blur(10px); }
.wizard-card {
    position: relative; z-index: 1; width: 100%; max-width: 500px;
    background: var(--navy2); border: 1px solid var(--border); border-radius: 28px;
    padding: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: translateY(30px); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wizard-modal.open .wizard-card { transform: translateY(0); }
.wizard-close {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    color: var(--text3); cursor: pointer; padding: 8px; transition: color 0.3s;
}
.wizard-close:hover { color: #fff; }

.wizard-steps-indicator { display: flex; gap: 8px; margin-bottom: 30px; }
.step-dot { width: 40px; height: 4px; border-radius: 99px; background: rgba(255,255,255,0.05); transition: all 0.4s; }
.step-dot.active { background: var(--cyan); box-shadow: 0 0 10px var(--cyan-glow); }

.wizard-step { display: none; }
.wizard-step.active { display: block; animation: reveal-up 0.5s forwards; }

.wiz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wiz-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
.wiz-opt { cursor: pointer; }
.wiz-opt input { display: none; }
.wiz-opt-inner {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    padding: 20px; border-radius: 18px; text-align: center;
    transition: all 0.3s; display: flex; flex-direction: column; gap: 10px;
}
.wiz-opt-inner.horizontal { flex-direction: row; justify-content: space-between; text-align: left; padding: 16px 20px; }
.wiz-icon { font-size: 1.5rem; }
.wiz-opt-inner span { font-size: 0.85rem; font-weight: 600; color: var(--text2); }
.wiz-opt input:checked + .wiz-opt-inner {
    background: rgba(0, 200, 224, 0.08); border-color: var(--cyan);
}
.wiz-opt input:checked + .wiz-opt-inner span { color: #fff; }

.wiz-input {
    width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 14px; padding: 16px 20px; color: #fff; font-family: var(--font);
    font-size: 0.95rem; transition: all 0.3s;
}
.wiz-input:focus { border-color: var(--cyan); background: rgba(255,255,255,0.06); outline: none; }

@media (max-width: 600px) {
    .wizard-card { padding: 30px 20px; border-radius: 0; border: none; height: 100%; max-width: 100%; display: flex; flex-direction: column; justify-content: center; }
    .wiz-grid { grid-template-columns: 1fr; }
}


/* ¦¦¦ FLOATING SOCIAL WIDGET ¦¦¦ */
.floating-social-widget {
    position: fixed; right: 30px; top: 50%; transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 15px; z-index: 999;
}
.fsw-item {
    width: 54px; height: 54px; background: var(--navy2); border: 1px solid var(--border);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none; position: relative; transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.fsw-item i { width: 22px; height: 22px; }
.fsw-item.whatsapp:hover { background: #25D366; border-color: #25D366; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
.fsw-item.wizard:hover { background: var(--cyan); border-color: var(--cyan); color: var(--navy); box-shadow: 0 10px 30px rgba(0, 200, 224, 0.3); }

.fsw-label {
    position: absolute; right: 70px; background: var(--navy2); border: 1px solid var(--border);
    padding: 8px 15px; border-radius: 10px; font-size: 0.75rem; font-weight: 700;
    color: #fff; white-space: nowrap; opacity: 0; transform: translateX(20px);
    pointer-events: none; transition: all 0.3s;
}
.fsw-item:hover .fsw-label { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
    .floating-social-widget { display: none; } /* On mobile, we have the bottom bar */
}

