*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #F2EDE4;
    --cream-dark: #E8E0D4;
    --ink: #0E0E0E;
    --ink-mid: #1A1A1A;
    --ink-soft: rgba(14,14,14,0.45);
    --ink-dim: rgba(14,14,14,0.22);
    --accent: #C8A96E;
    --accent-dark: #A8893E;
    --cyan: #1A8FBF;
    --white: #FFFFFF;
    --border: rgba(14,14,14,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit',sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
}

/* Custom cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s,width 0.3s,height 0.3s,background 0.3s;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.12s ease-out,width 0.3s,height 0.3s,opacity 0.3s;
}

.cursor.hover {
    width: 6px;
    height: 6px;
    background: var(--accent);
}

.cursor-ring.hover {
    width: 48px;
    height: 48px;
    border-color: var(--accent);
    opacity: 0.6;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    background: rgba(242,237,228,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.nav-logo {
    font-family: 'Playfair Display',serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

    .nav-logo em {
        font-style: italic;
        color: #c5a66c;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

    .nav-links a {
        font-size: 13px;
        color: var(--ink-soft);
        text-decoration: none;
        font-weight: 400;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--ink);
        }

.nav-cta {
    background: var(--ink) !important;
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    transition: all 0.2s !important;
}

    .nav-cta:hover {
        background: var(--accent) !important;
        color: var(--ink) !important;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    background: none;
    border: none;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 1.5px;
        background: var(--ink);
    }

/* ── HERO ── */


/* ── TICKER ── */
.ticker {
    background: var(--ink);
    color: var(--cream);
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ticker-inner {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(242,237,228,0.7);
}

.tick-sep {
    font-size: 18px;
    color: var(--accent);
    font-family: 'Playfair Display',serif;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SERVICES ── */
.services {
    padding: 120px 60px;
    background: var(--cream);
}

.sec-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 80px;
}

.sec-num {
    font-family: 'Playfair Display',serif;
    font-size: 18px;
    font-style: italic;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.sec-h2 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(36px,4vw,56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

    .sec-h2 em {
        font-style: italic;
        color: var(--accent);
    }

.sec-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.75;
    font-weight: 300;
    max-width: 380px;
    align-self: end;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.svc {
    background: var(--cream-dark);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 1px solid transparent;
}

    .svc::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--ink);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
    }

    .svc:hover::before {
        transform: scaleY(1);
    }

    .svc:hover {
        border-color: transparent;
    }

.svc-inner {
    position: relative;
    z-index: 1;
}

.svc-num {
    font-family: 'Playfair Display',serif;
    font-size: 13px;
    font-style: italic;
    color: var(--ink-dim);
    margin-bottom: 28px;
    display: block;
    transition: color 0.4s;
}

.svc:hover .svc-num {
    color: rgba(200,169,110,0.5);
}

.svc-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s;
}

.svc:hover .svc-icon {
    transform: scale(1.1);
}

.svc-title {
    font-family: 'Playfair Display',serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    transition: color 0.4s;
}

.svc:hover .svc-title {
    color: var(--white);
}

.svc-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 28px;
    transition: color 0.4s;
}

.svc:hover .svc-desc {
    color: rgba(242,237,228,0.65);
}

.svc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.svc-tag {
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    transition: all 0.4s;
}

.svc:hover .svc-tag {
    border-color: rgba(200,169,110,0.35);
    color: rgba(200,169,110,0.8);
}

.svc-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 18px;
    opacity: 0;
    transform: translate(-8px,8px);
    transition: all 0.4s;
    color: var(--accent);
}

.svc:hover .svc-arrow {
    opacity: 1;
    transform: translate(0,0);
}

/* ── PORTFOLIO ── */
.portfolio {
    padding: 50px 60px;
    background: var(--ink);
}

    .portfolio .sec-h2 {
        color: var(--cream);
    }

        .portfolio .sec-h2 em {
            color: var(--accent);
        }

    .portfolio .sec-num {
        color: rgba(242,237,228,0.35);
    }

    .portfolio .sec-desc {
        color: rgba(242,237,228,0.5);
    }

.port-filters {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/*.pf {
    background: transparent;
    border: none;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(242,237,228,0.45);
    cursor: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Outfit',sans-serif;
    transition: color 0.2s;
    position: relative;
}

    .pf::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .pf.act {
        color: var(--cream);
    }

        .pf.act::after, .pf:hover::after {
            transform: scaleX(1);
        }

    .pf:hover {
        color: rgba(242,237,228,0.8);
    }*/

.pf {
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(242,237,228,0.4);
    position: relative;
    transition: all 0.3s ease;
}

    .pf::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 50%;
        width: 0%;
        height: 2px;
        background: var(--accent);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .pf.act {
        color: var(--cream);
    }

        .pf.act::after {
            width: 100%;
        }

    .pf:hover {
        color: white;
    }

.port-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* equal cards */
    gap: 20px;
}
.pc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.35s;
    cursor: none;
}

    .pc:hover {
        transform: translateY(-6px);
        border-color: rgba(200,169,110,0.3);
        box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    }

.pc-thumb {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}


    .pc-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* full fit without distortion */
        display: block;
    }
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pc-ov {
    position: absolute;
    inset: 0;
    background: rgba(14,14,14,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.pc:hover .pc-ov {
    opacity: 1;
}

.pc-ov a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pc-body {
    padding: 24px;
}

.pc-cat {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.pc-title {
    font-family: 'Playfair Display',serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pc-desc {
    font-size: 12px;
    color: rgba(242,237,228,0.45);
    line-height: 1.6;
    font-weight: 300;
}

.pc-tech {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.tt {
    font-size: 10px;
    padding: 3px 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    color: rgba(242,237,228,0.5);
    letter-spacing: 0.04em;
}
.pc {
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}
.chakki-thumb {
    background: url('/image/WhatsApp Image 2026-03-31 at 5.20.37 PM.jpeg') center center no-repeat;
    background-size: cover; /* full cover without distortion */
    object-fit: fill;
    height:220px;
}
@media (max-width: 992px) {
    .port-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .port-grid {
        grid-template-columns: 1fr;
    }
}
/* ── CONTACT ── */
.contact {
    padding: 50px 60px;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left .sec-h2 {
    margin-bottom: 20px;
}

.contact-left .sec-desc {
    margin-bottom: 44px;
}

.cinfo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ci {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--cream-dark);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.ci-ic {
    font-size: 18px;
    width: 40px;
    height: 40px;
    background: var(--ink);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


    .ci-ic img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

.ci-lbl {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 3px;
    font-weight: 600;
}

.ci-val {
    font-size: 14px;
    color: var(--ink);
    font-weight: 400;
}

    .ci-val a {
        color: var(--ink);
        text-decoration: none;
    }

        .ci-val a:hover {
            color: var(--accent);
        }

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    font-family: 'Outfit',sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(37,211,102,0.2);
}

    .wa-btn:hover {
        background: #1EB85A;
        transform: translateY(-3px);
        box-shadow: 0 16px 48px rgba(37,211,102,0.3);
    }

@media(max-width:768px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 20px;
        text-align: left;
    }

    .contact-left {
        text-align: center;
    }

    .cinfo {
        align-items: center;
    }

    .ci {
        width: 100%;
        max-width: 400px;
    }

    .wa-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Form */
.cform {
    background: var(--ink);
    border-radius: 10px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

    .cform::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: rgba(200,169,110,0.06);
        border-radius: 50%;
    }

.fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fgrp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .fgrp.full {
        grid-column: 1/-1;
    }

    .fgrp label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(242,237,228,0.4);
    }

.finput, .fsel, .ftxt {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--cream);
    font-family: 'Outfit',sans-serif;
    outline: none;
    transition: border-color 0.2s,background 0.2s;
    width: 100%;
}

.finput,
.fsel {
    height: 44px;
}

    .finput:focus, .fsel:focus, .ftxt:focus {
        border-color: rgba(200,169,110,0.5);
        background: rgba(200,169,110,0.04);
    }

    .finput::placeholder, .ftxt::placeholder {
        color: rgba(242,237,228,0.2);
    }

.fsel {
    /*    color: rgba(242,237,228,0.6);*/
    color: var(--cream);
    appearance: none;
    /*    cursor: none;*/
    cursor: pointer;
}

    .fsel option {
        background: #1A1A1A;
    }

.ftxt {
    resize: vertical;
    min-height: 100px;
}

.fsub {
    width: 100%;
    margin-top: 8px;
    background: var(--accent);
    color: var(--ink);
    font-family: 'Playfair Display',serif;
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    border-radius: 5px;
    border: none;
    /*    cursor: none;*/
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

    .fsub:hover {
        background: var(--cream);
        transform: translateY(-2px);
    }

@media(max-width:640px) {
    .fg {
        grid-template-columns: 1fr;
    }

    .fgrp.full {
        grid-column: span 1;
    }

    .cform {
        padding: 28px 20px;
    }
}

/* ── FOOTER ── */
footer {
    background: var(--ink-mid);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 60px 32px;
}

.ft {
    max-width: 1200px;
    margin: 0 auto;
}

.ft-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ft-logo {
    font-family: 'Playfair Display',serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
}

    .ft-logo em {
        font-style: italic;
        color: var(--accent);
    }

.ft-tagline {
    font-size: 13px;
    color: rgba(242,237,228,0.4);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 24px;
}

.ft-socials {
    display: flex;
    gap: 10px;
}

.fsoc {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all .2s;
    text-decoration: none;
}

    .fsoc img {
        width: 16px;
        height: 16px;
        object-fit: contain;
        filter: invert(1); /*    white icon */
    }

    .fsoc:hover {
        transform: translateY(-3px);
    }

    /* Brand hover colors */
    .fsoc:nth-child(1):hover {
        background: #E4405F;
    }

    .fsoc:nth-child(2):hover {
        background: #0077B5;
    }

    .fsoc:nth-child(3):hover {
        background: #1877F2;
    }

    .fsoc:hover {
        background: rgba(200,169,110,.15);
        border-color: rgba(200,169,110,.3);
    }

.ft-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(242,237,228,0.35);
    margin-bottom: 20px;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .ft-links a {
        font-size: 13px;
        color: rgba(242,237,228,0.5);
        text-decoration: none;
        transition: color 0.2s;
        font-weight: 300;
    }

        .ft-links a:hover {
            color: var(--accent);
        }

.ob {
    display: flex;
/*    align-items: center;*/
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 5px;
    transition: all 0.2s;
    text-decoration: none;
}

    .ob:hover {
        border-color: rgba(200,169,110,0.3);
        background: rgba(200,169,110,0.04);
    }

.ob-ic {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.ob-nm {
    font-size: 12px;
    font-weight: 600;
    color: var(--cream);
}

.ob-ds {
    font-size: 10px;
    color: rgba(242,237,228,0.35);
}

.ft-bottom {
    display: flex;
/*    align-items: center;*/
    justify-content: space-between;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.ft-copy {
    font-size: 12px;
    color: rgba(242,237,228,0.3);
}

    .ft-copy em {
        color: var(--accent);
        font-style: normal;
    }

@media(max-width:640px) {
    footer {
        padding: 60px 20px 30px;
    }

    .ft-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ft {
        text-align: center;
    }

    .ft-socials {
        justify-content: center;
    }

    .ft-links {
        align-items: center;
/*        align-items: flex-start;*/
    }

    .ob {
        justify-content: flex-start;
        text-align: left; /* important for content readability */
    }

    .ft-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ft-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

}

@media(min-width:641px) and (max-width:1023px) {
    .ft-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}


/* ── ABOUT ── */
.about {
    padding: 120px 60px;
    background: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg,#1A1208,#2A1E08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

    .about-img-main::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(200,169,110,0.08),transparent);
    }

.about-monogram {
    font-family: 'Playfair Display',serif;
    font-size: clamp(80px,12vw,160px);
    font-weight: 900;
    color: rgba(200,169,110,0.12);
    line-height: 1;
    user-select: none;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    padding: 24px 28px;
    border-radius: 10px;
}

.about-badge-num {
    font-family: 'Playfair Display',serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
}

.about-badge-lbl {
    font-size: 11px;
    font-weight: 600;
    color: rgba(14,14,14,0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-right .sec-num {
    color: rgba(200,169,110,0.6);
}

.about-right .sec-h2 {
    color: #fff;
    margin-bottom: 20px;
}

    .about-right .sec-h2 em {
        color: var(--accent);
    }

.about-right .sec-desc {
    color: rgba(255,255,255,0.55);
    max-width: 100%;
    margin-bottom: 36px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

    .about-values img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
.av-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 20px;
}

    .av-item:hover {
        border-color: rgba(200,169,110,0.25);
        background: rgba(200,169,110,0.04);
    }

.av-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.av-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.av-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    font-weight: 300;
}

.about-founder {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),#8B6914);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
}

.founder-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.founder-role {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* ── TEAM ── */
/*.team {
    padding: 120px 60px;
    background: var(--cream);
}

.team-header {
    text-align: center;
    margin-bottom: 72px;
}

.team-scroll-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;*/
/*    justify-content: center;
    scroll-padding-left: 50%;
    scroll-padding-right: 50%;*/
    /*    scroll-padding-left: 16px;*/
    /*scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.team-grid::-webkit-scrollbar {
    display: none;
}

.team-grid-bottom {
    display: none;
}

.team-card {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;*/
    /*    min-width: 260px;
    max-width: 260px;*/
    /*flex: 0 0 auto;
    width: 75%;
    max-width: 280px;
    flex-shrink: 0;*/
    /*    scroll-snap-align: start;*/
    /*scroll-snap-align: center;
}

    .team-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--ink);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
        z-index: 0;
    }

    .team-card:hover::before {
        transform: scaleY(1);
    }

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 70px rgba(14,14,14,0.18);
        border-color: rgba(200,169,110,0.3);
    }

.team-card-inner {
    position: relative;
    z-index: 1;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),#8B6914);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Playfair Display',serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--ink);
    border: 3px solid rgba(200,169,110,0.3);
    transition: all 0.4s;
}

.team-card:hover .team-avatar {
    border-color: rgba(200,169,110,0.6);
    box-shadow: 0 0 32px rgba(200,169,110,0.2);
}

.team-name {
    font-family: 'Playfair Display',serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    transition: color 0.4s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-card:hover .team-name {
    color: #fff;
}

.team-role {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    transition: color 0.4s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-card:hover .team-role {
    color: var(--accent);
}

.team-divider {
    width: 40px;
    height: 1.5px;
    background: var(--accent);
    margin: 0 auto 16px;
    opacity: 0.5;
    transition: width 0.4s;
}

.team-card:hover .team-divider {
    width: 60px;
    opacity: 1;
}

.team-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.65;
    font-weight: 300;
    transition: color 0.4s;
}

.team-card:hover .team-desc {
    color: rgba(255,255,255,0.55);
}

.team-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.team-arr {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(14,14,14,0.15);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all 0.2s;
    font-size: 16px;
}

    .team-arr:hover {
        background: var(--ink);
        color: var(--accent);
        border-color: var(--ink);
    }

.team-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.team-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink-dim);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

    .team-dot.active {
        background: var(--accent);
        width: 22px;
        border-radius: 4px;
    }

.team-grid::before,
.team-grid::after {
    content: "";
    flex: 0 0 20px;
}*/


/* 📱 MOBILE */
/*@media(max-width:640px) {
    .team-card {
        width: 70%;
    }
    .team-grid {
        padding-left: 16px;
        padding-right: 16px;
    }
    .team {
        padding: 80px 20px;
    }
}*/

/* 📲 TABLET */
/*@media(min-width:641px) and (max-width:1023px) {
    .team-card {
        width: 320px;
    }
}*/

/* 💻 DESKTOP */
/*@media(min-width:1024px) {
    .team-card {
        width: 340px;
    }
}*/

/* ── PROCESS ── */
.process {
    padding: 50px 60px;
    background: var(--cream);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

    .process-header .sec-desc {
        margin: 0 auto;
        text-align: center;
    }

.steps-wrap {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

    .steps-wrap::before {
        content: '';
        position: absolute;
        top: 44px;
        left: calc(12.5% + 20px);
        right: calc(12.5% + 20px);
        height: 1px;
        background: linear-gradient(90deg,transparent,var(--accent),transparent);
        opacity: 0.4;
    }

.step-item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--cream-dark);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    transition: all 0.3s;
}

.step-item:hover .step-circle {
    background: var(--ink);
    border-color: var(--accent);
}

.step-num {
    font-family: 'Playfair Display',serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--ink-dim);
    transition: color 0.3s;
}

.step-item:hover .step-num {
    color: var(--accent);
}

.step-title {
    font-family: 'Playfair Display',serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.65;
    font-weight: 300;
}

@media(max-width:640px) {
    .steps-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        position: relative;
    }

        .steps-wrap::before {
            display: block;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 1px;
            height: 100%;
            background: var(--accent);
            opacity: 0.2;
        }

    .step-item {
        text-align: center;
        padding: 0;
    }
}

@media(min-width:641px) and (max-width:1023px) {
    .steps-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

        .steps-wrap::before {
            display: none;
        }
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 50px 60px;
    background: var(--ink-mid);
}

.testi-header {
    text-align: center;
    margin-bottom: 64px;
}

    .testi-header .sec-h2 {
        color: #fff;
    }

        .testi-header .sec-h2 em {
            color: var(--accent);
        }

    .testi-header .sec-num {
        color: rgba(200,169,110,0.5);
    }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 32px;
    /*    transition: all 0.3s;*/
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .testi-card:hover {
        border-color: rgba(200,169,110,0.3);
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    }

.testi-quote {
    font-size: 48px;
    font-family: 'Playfair Display',serif;
    color: var(--accent);
    opacity: 0.4;
    line-height: 0.8;
    margin-bottom: 20px;
    display: block;
}

/* Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Card Text Responsive */
.testi-text {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d1d1;
    font-style: normal;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: left;
    margin-top: 14px;
}

/* Prevent outside spacing */
#testimonialSlider {
    padding-bottom: 5px;
}

.testi-card {
    box-sizing: border-box;
}

/* Mobile */
@media(max - width:768px) {
    .testi-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .testi-card {
        width: 100%;
    }
}

.testi-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),#8B6914);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.testi-company {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #a6863c;
}

.star {
    color: var(--accent);
    font-size: 13px;
}

@media(max-width:640px) {
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testi-card {
        padding: 24px;
    }

    .testimonials {
        padding: 80px 20px;
    }
}
@media(min-width:641px) and (max-width:1023px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ── SCROLL REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease,transform 0.7s ease;
}

    .rv.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 120px 40px 80px;
    }

    .hero-right {
        height: 380px;
    }

    .hc-main {
        width: 280px;
        height: 340px;
    }

    .hc-accent {
        width: 170px;
        height: 200px;
    }

    .sec-header {
        grid-template-columns: 1fr;
    }

    .services-list, .port-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media(max-width:768px) {
    nav {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(242,237,228,0.97);
        flex-direction: column;
        padding: 28px;
        gap: 22px;
        border-bottom: 1px solid var(--border);
    }

        .nav-links.active{
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 110px 24px 60px;
    }

    /*.hero-right {
    height: 300px;
    }*/

    .hc-main {
        width: 220px;
        height: 280px;
    }

    .hc-accent {
        width: 140px;
        height: 170px;
        top: 160px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .steps-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

        .steps-wrap::before {
            display: none;
        }

    .about, .process, .testimonials {
        padding: 80px 24px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .port-grid {
        grid-template-columns: 1fr;
    }

    .pc.featured .pc-thumb, .pc-thumb {
        height: 200px;
    }

    footer {
        padding: 48px 24px 24px;
    }

    .ft-top {
        grid-template-columns: 1fr;
    }

    .fg {
        grid-template-columns: 1fr;
    }

    .fgrp.full {
        grid-column: 1;
    }

    .cform {
        padding: 32px 24px;
    }
}

/*<!-- AI CHATBOT  -->*/

/* Chatbot bubble */
.cb-bubble {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(14,14,14,0.3);
    transition: all 0.3s;
    border: 2px solid var(--accent);
}

    .cb-bubble:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(200,169,110,0.3);
    }

    .cb-bubble svg {
        width: 26px;
        height: 26px;
        transition: all 0.3s;
    }

    .cb-bubble.open svg.icon-chat {
        display: none;
    }

    .cb-bubble.open svg.icon-close {
        display: block !important;
    }

.cb-pulse {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: #22C55E;
    border-radius: 50%;
    border: 2px solid var(--cream);
    animation: cbPulse 2s infinite;
}

@keyframes cbPulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34,197,94,0);
    }
}

/* Chat window */
.cb-window {
    position: fixed;
    bottom: 108px;
    right: 16px;
    left: auto;
    z-index: 998;
    width: min(380px, calc(100vw - 40px));
    max-width: 100%;
    max-height: 90vh;
    /*    height: 560px;*/
    background: var(--cream);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(14,14,14,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(14,14,14,0.08);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    will-change: transform;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    transform-origin: bottom right;
}

    .cb-window.open {
        transform: scale(1) translateY(0);
        opacity: 1;
        pointer-events: all;
    }

/* Chat header */
.cb-header {
    background: var(--ink);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),#8B6914);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
}

.cb-header-info {
    flex: 1;
}

.cb-header-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: 'Playfair Display',serif;
}

.cb-header-status {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.cb-status-dot {
    width: 7px;
    height: 7px;
    background: #22C55E;
    border-radius: 50%;
    animation: cbPulse 2s infinite;
}

.cb-close-btn {
    background: rgba(255,255,255,0.08);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

    .cb-close-btn:hover {
        background: rgba(255,255,255,0.15);
        color: #fff;
    }

/* Messages area */
.cb-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

    .cb-messages::-webkit-scrollbar {
        width: 4px;
    }

    .cb-messages::-webkit-scrollbar-track {
        background: transparent;
    }

    .cb-messages::-webkit-scrollbar-thumb {
        background: rgba(14,14,14,0.1);
        border-radius: 2px;
    }

/* Message bubbles */
.cb-msg {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    max-width: 88%;
}

    .cb-msg.bot {
        align-self: flex-start;
    }

    .cb-msg.user {
        align-self: flex-end;
        flex-direction: row-reverse;
    }

.cb-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent),#8B6914);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    flex-shrink: 0;
}

.cb-msg-text {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}

.cb-msg.bot .cb-msg-text {
    background: var(--cream-dark);
    color: var(--ink);
    border-bottom-left-radius: 4px;
}

.cb-msg.user .cb-msg-text {
    background: var(--ink);
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Typing indicator */
.cb-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: var(--cream-dark);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

    .cb-typing span {
        width: 7px;
        height: 7px;
        background: var(--ink-dim);
        border-radius: 50%;
        animation: typingDot 1.2s infinite;
    }

        .cb-typing span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .cb-typing span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes typingDot {
    0%,60%,100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Quick replies */
.cb-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 12px;
}

.cb-quick-btn {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid rgba(14,14,14,0.15);
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    font-family: 'Outfit',sans-serif;
    transition: all 0.2s;
    font-weight: 400;
}

    .cb-quick-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(200,169,110,0.06);
    }

/* Input area */
.cb-input-wrap {
    padding: 14px 16px;
    border-top: 1px solid rgba(14,14,14,0.08);
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    flex-shrink: 0;
}

.cb-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    font-family: 'Outfit',sans-serif;
    color: var(--ink);
    background: transparent;
    resize: none;
}

    .cb-input::placeholder {
        color: var(--ink-dim);
    }

.cb-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

    .cb-send:hover {
        background: var(--accent);
    }

    .cb-send svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .cb-send:disabled {
        background: var(--ink-dim);
        cursor: not-allowed;
    }


/* 📱 MOBILE FIX - CHATBOT */
@media(max-width:480px) {

    /* Chat window full screen type */
    .cb-window {
        width: 100%;
        height: 80%;
        right: 0;
        bottom: 0;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
        opacity: 1;
        pointer-events: none;
        transition: transform 0.35s ease;
        /*        transform-origin: bottom;*/
        /*        transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
        padding-bottom: env(safe-area-inset-bottom);*/
    }

        /* Open animation smooth */
        .cb-window.open {
            transform: translateY(0);
            pointer-events: all;
        }

    /* Bubble thoda safe area me */
    .cb-bubble {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    /* Header compact */
    .cb-header {
        padding: 14px 16px;
    }

    /* Messages padding reduce */
    .cb-messages {
        padding: 14px;
        scroll-behavior: smooth;
    }

    /* Input area tight */
    .cb-input-wrap {
        padding: 10px 12px;
    }

    /* Quick buttons wrap properly */
    .cb-quick {
        padding: 0 14px 10px;
    }

    .cb-quick-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* =============================================
   RESPONSIVE DESIGN - CLEAN & OPTIMIZED
============================================= */

/*@media (max-width: 1024px) {
    nav {
        padding: 0 clamp(24px, 5vw, 40px);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 120px 40px 80px;
        text-align: center;
    }

    .hero-right {
        height: auto;
        margin-top: 40px;
    }

    .hero-card {
        position: relative;
        margin: 0 auto;
    }

    .sec-header {
        grid-template-columns: 1fr;
    }

    .services-list,
    .port-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}*/

/* ==================== MOBILE (768px and below) ==================== */
/*@media (max-width: 768px) {*/

    /* NAVBAR */
    /*.nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(242, 237, 228, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(14,14,14,0.08);
        z-index: 99;
    }

        .nav-links.active {
            display: flex;
        }

    .hamburger {
        display: flex;
    }*/

    /* HERO */
    /*.hero {
        padding: 110px 20px 80px;
        min-height: auto;
    }

    .hero-h1 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-desc {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .btn-dark,
    .btn-ghost {
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }*/

    /* SERVICES & PORTFOLIO */
    /*.services-list,
    .port-grid {
        grid-template-columns: 1fr;
    }

    .svc {
        padding: 40px 28px;
    }*/

    /* CONTACT */
    /*.fg {
        grid-template-columns: 1fr;
    }

    .cform {
        padding: 32px 24px;
    }*/

    /* Footer */
    /*footer {
        padding: 48px 24px 32px;
    }

    .ft-top {
        grid-template-columns: 1fr;
    }*/

    /* Team */
    /*.team {
        padding: 80px 24px;
    }
}*/

/* Small Mobile */
/*@media (max-width: 480px) {
    .hero-h1 {
        font-size: 30px;
    }

    .sec-h2 {
        font-size: 26px;
    }

    .svc-title {
        font-size: 22px;
    }
}*/

/* Disable Custom Cursor on Touch Devices */
/*@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-ring {
        display: none !important;
    }
}*/

/* Global Spacing Fixes */
/*section {
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
}

.hero,
.services,
.portfolio,
.about,
.team,
.process,
.contact,
.testimonials {
    padding-top: clamp(80px, 10vw, 120px);
    padding-bottom: clamp(80px, 10vw, 120px);
}*/
/* ================= CHATBOT RESPONSIVE FIX ================= */

/* Tablet */
/*@media (max-width: 768px) {
    .cb-window {
        width: calc(100vw - 24px);
        height: 70vh;
        right: 12px;
        bottom: 90px;
        border-radius: 16px;
    }

    .cb-bubble {
        right: 12px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .cb-header {
        padding: 14px 16px;
    }

    .cb-messages {
        padding: 14px;
    }

    .cb-msg-text {
        font-size: 12px;
        padding: 10px 12px;
    }

    .cb-input-wrap {
        padding: 10px;
    }

    .cb-input {
        font-size: 12px;
    }

    .cb-send {
        width: 32px;
        height: 32px;
    }*/

    /* Quick buttons responsive */
    /*.cb-quick {
        flex-direction: column;
        gap: 6px;
    }

    .cb-quick-btn {
        width: 100%;
        text-align: left;
    }
}*/

/* Small Mobile */
/*@media (max-width: 480px) {
    .cb-window {
        width: calc(100vw - 16px);
        height: 75vh;
        right: 8px;
        bottom: 80px;
    }

    .cb-bubble {
        right: 8px;
        bottom: 14px;
    }

    
    .cb-msg {
        max-width: 100%;
    }
}*/