/* ===== PROJECTS ===== */

.pf-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 42px;
    flex-wrap: wrap
}

.pfb {
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: 1.5px solid var(--border);
    color: var(--muted);
    background: transparent;
    transition: all .25px;
    cursor: pointer
}

.pfb.on,
.pfb:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 4px 18px rgba(26, 60, 110, .2)
}

.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-left: 60px;
    padding-right: 60px;
}

.pc {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
    cursor: pointer
}

.pc:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 60, 110, .15)
}

.pc-img {
    height: 222px;
    overflow: hidden;
    position: relative
}

.pc-img img {
    height: 100%;
    transition: transform .65s cubic-bezier(.23, 1, .32, 1)
}

.pc:hover .pc-img img {
    transform: scale(1.07)
}

.pc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 14px;
    border-radius: 50px;
    background: var(--blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase
}

.pc-badge.ready {
    background: #16a34a
}

.pc-badge.pre {
    background: var(--blue-mid);
    color: var(--white)
}

.pc-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 600;
    color: var(--text)
}

.pc-body {
    padding: 22px
}

.pc-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px
}

.pc-loc {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px
}

.pc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border)
}

.pc-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue)
}

.pc-price small {
    font-family: 'Poppins';
    font-size: 11px;
    font-weight: 300;
    color: var(--muted)
}

.btn-sm {
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--blue-l);
    border: 1px solid rgba(26, 60, 110, .15);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .25s;
    cursor: pointer
}

.btn-sm:hover {
    background: var(--blue);
    color: var(--white)
}


/* ===== ABOUT SECTION ===== */

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.av {
    position: relative;
    height: 560px
}

.av-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 90%;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.av-main img {
    height: 100%
}

.av-acc {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 55%;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 3
}

.av-acc img {
    height: 100%
}

.av-frame {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 62%;
    height: 92%;
    border: 2px solid rgba(26, 60, 110, .12);
    border-radius: var(--r-lg)
}

.av-chip {
    position: absolute;
    top: 18px;
    right: -10px;
    z-index: 10;
    background: var(--blue);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    animation: floatChip 4s ease-in-out infinite
}

.av-chip-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1
}

.av-chip-lbl {
    font-size: 10px;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .5px
}

@keyframes floatChip {

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

    50% {
        transform: translateY(-10px)
    }
}

.feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 30px
}

.feat {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text);
    font-weight: 400;
    transition: all .2s
}

.feat:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-l)
}

.feat span:first-child {
    font-size: 15px
}


/* ===== SERVICES ===== */

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

.srv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 34px 26px;
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-glow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.srv-card:hover {
    border-color: rgba(26, 60, 110, .18);
    box-shadow: 0 20px 55px rgba(26, 60, 110, .1);
    transform: translateY(-6px)
}

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

.srv-ico {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: var(--blue-l);
    border: 1px solid rgba(26, 60, 110, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    margin-bottom: 20px;
    transition: all .4s
}

.srv-card:hover .srv-ico {
    background: var(--lblue);
    transform: rotate(5deg) scale(1.08)
}

.srv-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px
}

.srv-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
    margin-bottom: 18px
}

.srv-lnk {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    transition: gap .3s;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    margin-top: auto
}

.srv-lnk:hover {
    gap: 11px
}


/* ===== SERVICE CAROUSEL ===== */

.srv-carousel-wrap {
    position: relative;
    overflow: hidden;
    padding: 4px 0 20px
}

.srv-carousel {
    display: flex;
    gap: 22px;
    transition: transform .6s cubic-bezier(.23, 1, .32, 1)
}

.srv-carousel .srv-card {
    min-width: calc(33.33% - 16px);
    flex-shrink: 0
}

.srv-car-ctrl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px
}

.srv-car-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--blue);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    cursor: pointer;
    flex-shrink: 0
}

.srv-car-btn:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue)
}

.srv-car-dots {
    display: flex;
    gap: 7px
}

.srv-car-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    transition: all .3s;
    cursor: pointer
}

.srv-car-dot.on {
    background: var(--blue);
    width: 22px;
    border-radius: 4px
}


/* ===== TESTIMONIALS ===== */

.testi-wrap {
    overflow: hidden;
    position: relative
}

.testi-track {
    display: flex;
    transition: transform .65s cubic-bezier(.23, 1, .32, 1)
}

.testi-card {
    min-width: 50%;
    padding: 0 11px
}

@media(max-width:768px) {
    .testi-card {
        min-width: 100%
    }
}

.tc-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .4s
}

.tc-inner:hover {
    border-color: rgba(26, 60, 110, .15);
    box-shadow: var(--shadow-lg)
}

.tc-inner::before {
    content: '\201C';
    position: absolute;
    top: 8px;
    left: 24px;
    font-family: serif;
    font-size: 7.5rem;
    color: rgba(26, 60, 110, .05);
    line-height: 1
}

.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px
}

.tc-stars span {
    color: #f59e0b;
    font-size: 14px
}

.tc-text {
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.78;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    min-height: 100px;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 13px
}

.tc-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2.5px solid var(--blue);
    flex-shrink: 0;
    object-fit: cover
}

.tc-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text)
}

.tc-loc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px
}

.tc-proj {
    font-size: 10px;
    color: var(--blue-mid);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px
}

.tc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px
}

.tc-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--blue);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    cursor: pointer
}

.tc-btn:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue)
}

.tc-dots {
    display: flex;
    gap: 7px
}

.tdot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    transition: all .3s;
    cursor: pointer
}

.tdot.on {
    background: var(--blue);
    width: 22px
}


/* ===== GALLERY ===== */

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

    .gal-item {
        height: 280px;
        margin-bottom: 14px;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        position: relative
    }

    .gal-item img {
        height: 100%;
        object-fit: cover;
        transition: transform .55s;
        filter: brightness(.88)
    }

    .gal-item:hover img {
        transform: scale(1.06);
        filter: brightness(.7)
    }

.gal-ov {
    position: absolute;
    inset: 0;
    background: rgba(26, 60, 110, .45);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: center;
    justify-content: center
}

.gal-ov-ic {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px
}

.gal-item:hover .gal-ov {
    opacity: 1
}

#lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center
}

#lightbox.open {
    display: flex
}

#lb-img {
    max-width: 88vw;
    max-height: 86vh;
    border-radius: 12px;
    object-fit: contain
}

#lb-close {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 32px;
    color: var(--white);
    background: none;
    border: none;
    transition: color .2s;
    cursor: pointer
}

#lb-close:hover {
    color: rgba(255, 255, 255, .6)
}


/* ===== BLOG ===== */

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

.bc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .4s;
    cursor: pointer
}

.bc:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg)
}

.bc-img {
    height: 200px;
    overflow: hidden
}

.bc-img img {
    height: 100%;
    transition: transform .55s
}

.bc:hover .bc-img img {
    transform: scale(1.07)
}

.bc-body {
    padding: 24px
}

.bc-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 8px
}

.bc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 9px
}

.bc-date {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 16px
}

.bc-lnk {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    transition: gap .3s;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    cursor: pointer
}

.bc-lnk:hover {
    gap: 10px
}


/* ===== FEATURED PROJECT BAND ===== */

.feat-band {
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 280px;
    position: relative
}

.feat-vis {
    overflow: hidden;
    position: relative
}


.feat-vis img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feat-band:hover .feat-vis img {
    transform: scale(1.04)
}

.feat-vis-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, var(--offwhite) 100%)
}

.feat-content {
    background: var(--offwhite);
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.feat-content .sec-h2 {
    margin-bottom: 14px
}

.feat-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 26px;
    font-weight: 300
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px
}

.chip {
    padding: 5px 13px;
    border-radius: 50px;
    background: rgba(26, 60, 110, .07);
    border: 1px solid rgba(26, 60, 110, .12);
    font-size: 11px;
    color: var(--blue);
    letter-spacing: .5px
}

.feat-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.fstat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1
}

.fstat-lbl {
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: 1px;
    margin-top: 3px;
    font-weight: 300
}


/* ===== CONTACT ===== */

.con-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.con-det {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 20px;
    transition: border-color .2s
}

.con-det:hover {
    border-color: var(--blue)
}

.cd-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px
}

.cd-lbl {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px
}

.cd-val {
    font-size: 14px;
    color: var(--text);
    font-weight: 400
}

.map-box {
    height: 170px;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--muted);
    gap: 8px;
    margin-top: 20px
}

.form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 34px;
    box-shadow: var(--shadow)
}

.form-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px
}

.form-box>p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 26px
}

.fg {
    margin-bottom: 15px
}

.fg label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .25s, box-shadow .25s
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 60, 110, .08)
}

.fg textarea {
    min-height: 108px;
    resize: vertical
}

.fg select option {
    background: white;
    color: var(--text)
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 24px rgba(26, 60, 110, .22);
    transition: all .3s;
    margin-top: 4px;
    cursor: pointer
}

.btn-submit:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 60, 110, .35)
}

.form-success {
    width: 100%;
    padding: 16px;
    background: #dcfce7;
    border: 1px solid #16a34a;
    border-radius: 8px;
    color: #15803d;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 4px
}



/* ===== CAREERS ===== */

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.jc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 22px;
    box-shadow: var(--shadow);
    transition: all .3s;
    cursor: pointer
}

.jc:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

.jc-dept {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 7px
}

.jc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 9px
}

.jc-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.jc-tag {
    padding: 4px 11px;
    background: var(--offwhite);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 11px;
    color: var(--muted)
}


/* ===== EVENTS ===== */

.ev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.ev-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    cursor: pointer;
    transition: all .4s
}

.ev-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 60, 110, .15)
}

.ev-date-col {
    background: var(--blue);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 78px
}

.ev-day {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1
}

.ev-mon {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px
}

.ev-body {
    padding: 18px 22px
}

.ev-type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 5px
}

.ev-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px
}

.ev-meta {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px
}


/* ===== CHANNEL PARTNER ===== */

.cp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.cp-step {
    text-align: center;
    padding: 28px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: all .3s
}

.cp-step:hover {
    border-color: var(--blue);
    transform: translateY(-4px)
}

.cp-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--blue);
    opacity: .35
}

.cp-step:last-child::after {
    display: none
}

.cp-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 14px
}


/* ===== FOOTER ===== */

footer {
    background: var(--blue-d);
    padding: 68px 5% 0;
    border-top: 3px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden
}

footer::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 168, .12), transparent 70%);
    pointer-events: none
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
    margin-bottom: 46px;
    position: relative;
    z-index: 1
}

.footer-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1.78;
    max-width: 265px;
    margin: 14px 0 20px
}

.footer-socs {
    display: flex;
    gap: 8px
}

.footer-soc {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    transition: all .2s
}

.footer-soc:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
    border-color: rgba(255, 255, 255, .25)
}

.footer-col h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 17px
}

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

.footer-col a,
.footer-col button {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    padding: 0;
    cursor: pointer
}

.footer-col a:hover,
.footer-col button:hover {
    color: var(--white)
}

.footer-bot {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1
}

.footer-bot p {
    font-size: 11px;
    color: rgba(255, 255, 255, .38);
    font-weight: 300
}

.footer-bot-links {
    display: flex;
    gap: 20px
}

.footer-bot-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    font-weight: 300;
    transition: color .2s;
    text-decoration: none
}

.footer-bot-links a:hover {
    color: rgba(255, 255, 255, .7)
}


/* ===== FLOATING BUTTONS — UNIQUE ===== */

.floats {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 8000
}

.fl {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px 0 14px;
    height: 46px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .22);
    transition: all .35s cubic-bezier(.23, 1, .32, 1);
    overflow: hidden;
    position: relative;
    white-space: nowrap
}

.fl::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .3s;
    background: rgba(255, 255, 255, .12)
}

.fl:hover::before {
    opacity: 1
}

.fl:hover {
    transform: translateX(-4px) scale(1.04);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .28)
}

.fl-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.fl-label {
    color: white
}

.fl-wa {
    background: linear-gradient(135deg, #128c4e, #25d366)
}

.fl-call {
    background: linear-gradient(135deg, var(--blue-d), var(--blue-mid))
}

.fl-pulse {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80
}

.fl-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #4ade80;
    animation: fl-ring 1.8s ease-out infinite
}

@keyframes fl-ring {
    0% {
        transform: scale(1);
        opacity: .8
    }

    100% {
        transform: scale(2.6);
        opacity: 0
    }
}

.back-top {
    position: fixed;
    right: 20px;
    bottom: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    color: var(--white);
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(26, 60, 110, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8000;
    transition: all .3s;
    opacity: 0;
    transform: translateY(12px);
    cursor: pointer
}

.back-top.show {
    opacity: 1;
    transform: none
}

.back-top:hover {
    background: var(--blue-d);
    transform: translateY(-3px)
}