@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@700;800&display=swap');

:root {
    --navy: #08111f;
    --navy2: #0d1a2b;
    --ink: #111827;
    --muted: #667085;
    --line: #e6e9ee;
    --soft: #f5f7fa;
    --yellow: #ffc72c;
    --yellow2: #ffdf6b;
    --green: #20b968;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(8, 17, 31, .10);
    --radius: 22px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    ;
    line-height: 1.6
}

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

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto
}

.narrow {
    width: min(820px, calc(100% - 40px))
}

.site-header {
    height: 76px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 17, 31, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.5px
}

.brand>span:last-child>span {
    color: var(--yellow)
}

.brand-mark {
    padding: 4px 8px;
    place-items: center;
    border-radius: 11px;
    background: var(--navy);
    color: var(--yellow);
    font-weight: 800;
    white-space: nowrap;
    border: 1px solid rgba(255, 199, 44, .25);
}

.brand-a {
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #dbe2ea;
    font-size: 14px;
    font-weight: 600
}

.nav a:not(.btn) {
    transition: .2s
}

.nav a:not(.btn):hover,
.nav a.active {
    color: var(--yellow)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform .2s, box-shadow .2s, background .2s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--yellow);
    color: #121212;
    box-shadow: 0 10px 25px rgba(255, 199, 44, .20)
}

.btn-primary:hover {
    background: var(--yellow2)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .25);
    color: var(--white);
    background: rgba(255, 255, 255, .04)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .10)
}

.btn-light {
    background: var(--white);
    color: var(--navy)
}

.btn-small {
    padding: 10px 16px
}

.btn-full {
    width: 100%;
    cursor: pointer
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 26px
}

.section {
    padding: 96px 0
}

.section-dark {
    background: radial-gradient(circle at 80% 15%, #163251 0, #0b1727 35%, #07101d 100%);
    color: #fff
}

.section-soft {
    background: var(--soft)
}

.hero {
    padding: 70px 0 80px;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 55px;
    align-items: center
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;

    span {
        padding: 4px 8px;
        background: var(--yellow);
    }
}

.section-dark .eyebrow,
.page-hero .eyebrow,
.cta-section .eyebrow {
    color: var(--navy);

    span {
        background: var(--white);
    }
}

h1,
h2 {
    font-family: Manrope, Arial, sans-serif;
    letter-spacing: -1.8px;
    line-height: 1.08;
    margin: 0 0 18px
}

h1 {
    font-size: clamp(42px, 6vw, 60px);

    span {
        font-size: clamp(42px, 6vw, 40px);
    }
}

h2 {
    font-size: clamp(32px, 4vw, 48px)
}

h3 {
    line-height: 1.2;
    margin: 0 0 8px
}

.hero h1 span,
.page-hero h1 span {
    color: var(--yellow)
}

.hero-lead {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 610px;
    margin: 0 0 25px
}

.price-chip {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 18px 0 28px
}

.price-chip span,
.price-chip small {
    color: #9aa8ba;
    font-size: 13px
}

.price-chip strong {
    font-family: Manrope;
    font-size: 40px;
    color: var(--yellow)
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #aebaca;
    font-size: 12px;
    margin-top: 24px
}

.hero-visual {
    position: relative
}

.poster-frame {
    background: #121e2e;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .35);
    transform: rotate(1deg)
}

.poster-frame img {
    border-radius: 16px;
    width: 100%;
    height: auto
}

.floating-badge {
    position: absolute;
    left: -30px;
    bottom: -22px;
    background: var(--white);
    color: var(--ink);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column
}

.floating-badge strong {
    font-size: 25px;
    font-family: Manrope
}

.floating-badge span {
    font-size: 12px;
    color: var(--muted)
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
    margin: 0
}

.section-heading.light p {
    color: #aebaca
}

.card-grid {
    display: grid;
    gap: 16px
}

.card-grid.six {
    grid-template-columns: repeat(3, 1fr)
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr)
}

.service-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    min-height: 200px;
    transition: .25s;
    box-shadow: 0 6px 20px rgba(8, 17, 31, .03)
}

.service-card-image img {
    border-radius: 18px 18px 0 0;
}

.service-card .service-card-text {
    padding: 30px 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d6b13d;
    box-shadow: var(--shadow)
}

.service-card .icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 12px;
    background: #fff5cf;
    color: #8a6300;
    font-weight: 800;
    font-size: 12px;
}

.service-card p,
.mini-card span {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
    max-width: 220px
}

.arrow {
    position: absolute;
    right: 22px;
    bottom: 20px;
    color: #9b7300;
    font-size: 20px
}

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

.muted {
    color: var(--muted)
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: #8a6300;
    font-weight: 800
}

.feature-list {
    display: grid;
    gap: 12px
}

.feature {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 16px
}

.section-soft .feature {
    background: #fff
}

.feature>span {
    font-family: Manrope;
    color: #c3981e;
    font-size: 13px
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 13px
}

.process-section {
    background: #0a1524
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.process {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .04)
}

.process b {
    color: var(--yellow);
    font-size: 12px;
    letter-spacing: 1px
}

.process h3 {
    margin-top: 28px
}

.process p {
    color: #aebaca;
    font-size: 13px
}

.pricing-banner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 38px;
    border: 1px solid #e4e7eb;
    border-radius: 24px;
    padding: 34px 40px;
    background: var(--white);
    box-shadow: var(--shadow)
}

.pricing-banner p {
    margin: 0;
    color: var(--muted)
}

.price-big {
    display: flex;
    flex-direction: column
}

.price-big small,
.price-big span {
    font-size: 12px;
    color: var(--muted)
}

.price-big strong {
    font: 800 42px Manrope;
    color: #111827
}

.faq-list {
    border-top: 1px solid var(--line)
}

details {
    border-bottom: 1px solid var(--line);
    padding: 20px 0
}

summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    display: flex;
    justify-content: space-between
}

summary:after {
    content: '+';
    color: #9b7300;
    font-size: 22px
}

details[open] summary:after {
    content: '–'
}

details p {
    color: var(--muted);
    margin: 12px 25px 0 0
}

.cta-section {
    padding: 70px 0;
    background: linear-gradient(105deg, #111d2d, #0b1421);
    color: #fff
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px
}

.cta-inner h2 {
    max-width: 700px
}

.cta-inner p {
    color: #aebaca;
    margin: 0
}

.footer {
    background: #060d17;
    color: #aebaca;
    padding: 55px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr;
    gap: 60px
}

.footer-brand {
    margin-bottom: 14px
}

.footer p {
    max-width: 390px;
    font-size: 13px
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 13px
}

.footer-grid strong {
    color: var(--white);
    margin-bottom: 5px
}

.footer-grid a:hover {
    color: var(--yellow)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    background: var(--green);
    color: var(--white);
    border-radius: 999px;
    padding: 2px 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(32, 185, 104, .30);
    transition: transform .2s;
}

.whatsapp-float span {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}


.page-hero {
    padding: 95px 0 90px
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 66px)
}

.page-hero p {
    color: #bdc9d7;
    font-size: 17px;
    max-width: 700px
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.service-detail-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff
}

.service-detail-grid article p {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.tag-cloud span {
    background: var(--white);
    border: 1px solid #e2e6eb;
    padding: 13px 17px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px
}

.mini-card {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 22px;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.mini-card b {
    font: 800 22px Manrope
}

.pricing-table-wrap {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    align-items: center
}

.pricing-table-wrap>div>p {
    color: #aebaca
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.package {
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .04)
}

.package.featured {
    border-color: rgba(255, 199, 44, .5)
}

.package span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aebaca
}

.package strong {
    display: block;
    font: 800 34px Manrope;
    color: var(--white);
    margin: 12px 0
}

.package p {
    font-size: 13px;
    color: #aebaca;
    min-height: 55px
}

.package a {
    color: var(--yellow);
    font-weight: 800;
    font-size: 13px
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 17px;
    margin: 12px 0;
    transition: .2s
}

.contact-card:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow)
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: #fff5cf;
    color: #8a6300;
    display: grid;
    place-items: center;
    font-weight: 800
}

.contact-card span:last-child {
    display: flex;
    flex-direction: column
}

.contact-card small,
.contact-card em {
    font-size: 11px;
    color: var(--muted);
    font-style: normal
}

.contact-card strong {
    font-size: 16px
}

.contact-note {
    margin-top: 24px;
    padding: 20px;
    border-radius: 16px;
    background: var(--soft)
}

.contact-note p {
    font-size: 13px;
    color: var(--muted);
    margin: 6px 0 0
}

.form-card {
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #fff
}

.form-card h2 {
    font-size: 32px
}

.form-card>p {
    margin-bottom: 25px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px
}

input,
textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid #dfe4ea;
    border-radius: 11px;
    padding: 13px 14px;
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: .2s;
    background: #fbfcfd
}

input:focus,
textarea:focus {
    border-color: #c49b25;
    box-shadow: 0 0 0 3px rgba(255, 199, 44, .13)
}

textarea {
    resize: vertical
}

.form-foot {
    font-size: 11px;
    color: #98a2b3;
    text-align: center;
    margin: 12px 0 0
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal-delay {
    transition-delay: .12s
}

@media(max-width:900px) {
    .nav {
        gap: 16px
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .pricing-table-wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero {
        padding-top: 55px
    }

    .poster-frame {
        max-width: 680px;
        margin: auto
    }

    .floating-badge {
        left: 12px
    }

    .card-grid.six {
        grid-template-columns: repeat(2, 1fr)
    }

    .card-grid.four {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-detail-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-banner {
        grid-template-columns: 1fr auto
    }

    .pricing-banner .btn {
        grid-column: 1/-1;
        justify-self: start
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }
}

@media(max-width:680px) {

    .container,
    .narrow {
        width: min(100% - 28px, 1160px)
    }

    .site-header {
        height: 68px
    }

    .nav-toggle {
        display: block
    }

    .nav {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 64px;
        background: #0b1625;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
    }

    .nav.open {
        display: flex
    }

    .nav a:not(.btn) {
        padding: 11px 12px
    }

    .nav .btn {
        text-align: center;
        margin-top: 6px
    }

    .hero {
        padding: 45px 0 65px
    }

    .hero-lead {
        font-size: 16px
    }

    .hero-actions .btn {
        width: 100%
    }

    .trust-row {
        gap: 10px;
        font-size: 11px
    }

    .hero-visual {
        margin-top: 15px
    }

    .floating-badge {
        position: relative;
        left: 0;
        bottom: auto;
        display: inline-flex;
        margin-top: 15px
    }

    .section {
        padding: 70px 0
    }

    .card-grid.six,
    .card-grid.four,
    .process-grid,
    .service-detail-grid,
    .pricing-cards,
    .form-row {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 175px
    }

    .pricing-banner {
        padding: 27px;
        grid-template-columns: 1fr
    }

    .pricing-banner .btn {
        grid-column: auto
    }

    .price-big strong {
        font-size: 36px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px
    }

    .whatsapp-float span {
        display: inline;
    }

    .page-hero {
        padding: 70px 0
    }

    .form-card {
        padding: 23px
    }

    .contact-grid {
        gap: 35px
    }

    .cta-section {
        padding: 55px 0
    }

    .cta-inner .btn {
        width: 100%
    }
}


/* Guided enquiry chatbot */
.chatbot-launcher {
    position: fixed;
    right: 22px;
    bottom: 82px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--navy);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: 0 16px 40px rgba(8, 17, 31, .25);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s
}

.chatbot-launcher:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(8, 17, 31, .32)
}

.chatbot-launcher-icon {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px
}

.chatbot {
    position: fixed;
    right: 22px;
    bottom: 78px;
    width: min(390px, calc(100vw - 28px));
    height: 560px;
    max-height: calc(100vh - 110px);
    z-index: 90;
    background: var(--white);
    border: 1px solid #e3e7ec;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(8, 17, 31, .28);
    display: none;
    overflow: hidden
}

.chatbot.open {
    display: flex;
    flex-direction: column;
    animation: chatIn .2s ease
}

.chatbot-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 18px 15px;
    background: linear-gradient(135deg, #0b1727, #13263d);
    color: #fff
}

.chatbot-head strong {
    display: block;
    font-family: Manrope;
    font-size: 16px
}

.chatbot-head small {
    display: block;
    color: #b8c4d2;
    font-size: 11px;
    margin-top: 2px
}

.chatbot-head button {
    border: 0;
    background: rgba(255, 255, 255, .09);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer
}

.chatbot-progress {
    height: 4px;
    background: #eef1f4
}

.chatbot-progress span {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--yellow);
    transition: width .25s ease
}

.chatbot-messages {
    flex: 1;
    overflow: auto;
    padding: 18px 15px 10px;
    background: #f7f9fb
}

.chat-msg {
    max-width: 88%;
    padding: 11px 13px;
    border-radius: 14px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.45
}

.chat-msg.bot {
    background: var(--white);
    border: 1px solid #e7ebef;
    border-top-left-radius: 5px;
    color: #253041
}

.chat-msg.user {
    margin-left: auto;
    background: #fff1bd;
    color: #20242b;
    border-top-right-radius: 5px
}

.chatbot-input-area {
    padding: 12px 14px 8px;
    background: var(--white);
    border-top: 1px solid #e8ebef
}

.chatbot-field {
    width: 100%;
    border: 1px solid #dce2e8;
    border-radius: 11px;
    padding: 12px 13px;
    font: inherit;
    font-size: 13px;
    outline: none;
    background: #fbfcfd
}

.chatbot-field:focus {
    border-color: #c49b25;
    box-shadow: 0 0 0 3px rgba(255, 199, 44, .13)
}

.chatbot-select {
    appearance: auto
}

.chatbot-send {
    width: 100%;
    margin-top: 8px;
    border: 0;
    border-radius: 11px;
    padding: 12px 15px;
    background: var(--yellow);
    color: #171717;
    font-weight: 800;
    cursor: pointer
}

.chatbot-send:disabled {
    opacity: .65;
    cursor: wait
}

.chatbot-privacy {
    padding: 0 14px 12px;
    text-align: center;
    color: #98a2b3;
    background: var(--white);
    font-size: 10px
}

.chat-success {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(5, 12, 20, .68);
    backdrop-filter: blur(5px);
    display: none;
    place-items: center;
    padding: 20px
}

.chat-success.show {
    display: grid
}

.chat-success-card {
    width: min(420px, 100%);
    background: var(--white);
    border-radius: 24px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
    animation: chatIn .22s ease
}

.success-check {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: #e8fff1;
    color: #149252;
    font-size: 30px;
    font-weight: 900
}

.chat-success-card h3 {
    font: 800 26px Manrope;
    margin-bottom: 9px
}

.chat-success-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 22px
}

.chat-success-card .btn {
    min-width: 120px
}


.social-links {
    display: flex;
    gap: 8px;
}

.social-links>a:nth-child(1):hover {
    color: var(--green);
}

.social-links>a:nth-child(2):hover {
    color: #DD2A7B;
}

.social-links>a:nth-child(3):hover {
    color: #1877F2;
}

.social-links>a:nth-child(4):hover {
    color: #FF0000;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

@keyframes chatIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.98)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:680px) {
    .chatbot-launcher {
        right: 14px;
        bottom: 75px;
        padding: 11px 13px
    }

    .chatbot {
        right: 14px;
        bottom: 14px;
        width: calc(100vw - 28px);
        height: min(590px, calc(100vh - 28px));
        max-height: none
    }

    .chatbot-launcher {
        bottom: 76px
    }

    .whatsapp-float {
        bottom: 14px
    }

    .chatbot-launcher span:last-child {
        display: inline
    }
}

/* =========================================
   IMAGE-ONLY HERO BANNER SLIDER
========================================= */

.hero-banner {
    width: 100%;
    background: #08111f;
    overflow: hidden;
}

.hero-banner-slider {
    width: 100%;
    overflow: hidden;
}

.hero-banner-slider .swiper-slide {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.hero-banner-slider .swiper-slide a {
    display: block;
    width: 100%;
    line-height: 0;
}

.hero-banner-slider img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}


/* =========================================
   SLIDE TRANSITION
========================================= */

.hero-banner-slider .swiper-slide {
    transition: opacity 0.3s ease;
}


/* =========================================
   PAGINATION
========================================= */

.hero-banner-pagination {
    position: absolute !important;
    z-index: 10;

    bottom: 18px !important;

    display: flex;
    justify-content: center;
    gap: 7px;
}

.hero-banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 !important;

    background: #ffffff;
    opacity: 0.45;

    transition:
        width 0.3s ease,
        opacity 0.3s ease;
}

.hero-banner-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    opacity: 1;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero-banner-pagination {
        bottom: 10px !important;
    }

    .hero-banner-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .hero-banner-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }

}