/* AQUAFIRE TECH SOLUTIONS - MAIN STYLESHEET */
:root {
    --primary: #0797e6;
    --primary-dark: #0578b8;
    --navy: #031c2f;
    --text: #17202a;
    --muted: #647180;
    --light: #f5f7fb;
    --white: #fff;
    --border: #e6ebf1;
    --shadow: 0 18px 45px rgba(3, 28, 47, .10);
    --radius: 18px;
    --container: 1180px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden
}

body,
button,
input,
select,
textarea {
    font-family: inherit
}

img {
    max-width: 100%;
    display: block
}
.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain
}

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

button {
    border: 0;
    cursor: pointer
}

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

.section {
    padding: 100px 0
}

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

.section-heading.centered {
    margin-inline: auto;
    text-align: center
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.section-heading h2,
.why-content h2,
.enquiry-content h2,
.careers-content h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -.04em
}

.section-heading h2 span,
.why-content h2 span,
.enquiry-content h2 span,
.careers-content h2 span {
    color: var(--primary)
}

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

/* header */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 18px 0;
    transition: .25s
}

.site-header.scrolled {
    background: rgba(3, 28, 47, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    position: relative;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
    overflow: hidden
}

.logo-a {
    font-size: 24px;
    z-index: 2
}

.logo-flame {
    position: absolute;
    right: 4px;
    bottom: 1px;
    color: #ff9d19;
    font-size: 15px
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo-text strong {
    font-size: 20px
}

.logo-text span {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: .13em;
    text-transform: uppercase;
    opacity: .75
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 600
}

.nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: .2s
}

.nav-link:hover,
.nav-link.active {
    color: #fff
}

.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1)
}

.nav-cta,
.mobile-nav-cta {
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 13px
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    padding: 10px
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff
}

.mobile-nav {
    display: none
}

/* hero */
.hero-section {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    padding: 140px 0 90px
}

.hero-background-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.shape-one {
    width: 420px;
    height: 420px;
    right: -100px;
    top: 80px;
    background: rgba(7, 151, 230, .14)
}

.shape-two {
    width: 260px;
    height: 260px;
    left: -80px;
    bottom: -80px;
    background: rgba(255, 157, 25, .07)
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 70px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    margin-bottom: 25px
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(7, 151, 230, .12)
}

.hero-content h1 {
    max-width: 650px;
    font-size: clamp(52px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -.055em
}

.hero-content h1 span {
    color: var(--primary)
}

.hero-description {
    max-width: 600px;
    margin: 28px 0;
    color: rgba(255, 255, 255, .70);
    font-size: 17px
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    transition: .2s
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: #0aa5f7;
    transform: translateY(-2px)
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .20);
    color: #fff;
    background: rgba(255, 255, 255, .04)
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .09)
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px
}

.trust-item {
    display: flex;
    flex-direction: column
}

.trust-item strong {
    font-size: 27px
}

.trust-item span {
    color: rgba(255, 255, 255, .55);
    font-size: 12px
}

.trust-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, .16)
}

.hero-visual {
    position: relative
}

.hero-card {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .25)
}

.hero-card-top,
.hero-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 20px
}

.hero-card-top {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .72);
    font-size: 12px
}

.hero-card-dots {
    display: flex;
    gap: 6px
}

.hero-card-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3)
}

.hero-chart {
    height: 280px;
    padding: 25px;
    background: rgba(0, 0, 0, .08)
}

.hero-chart svg {
    width: 100%;
    height: 100%
}

.hero-card-bottom {
    border-top: 1px solid rgba(255, 255, 255, .09)
}

.hero-card-bottom small {
    display: block;
    color: rgba(255, 255, 255, .52);
    font-size: 11px
}

.hero-card-bottom strong {
    font-size: 28px
}

.growth-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(7, 151, 230, .15);
    color: var(--primary);
    font-size: 23px
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow)
}

.floating-card strong,
.floating-card span {
    display: block
}

.floating-card strong {
    font-size: 12px
}

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

.floating-card-one {
    left: -30px;
    bottom: 45px
}

.floating-card-two {
    right: -25px;
    top: 45px
}

.floating-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-weight: 900
}

.floating-icon.blue {
    background: rgba(7, 151, 230, .12);
    color: var(--primary)
}

.floating-icon.orange {
    background: rgba(255, 157, 25, .12);
    color: #ed8d00
}

/* common sections */
.about-section,
.why-section {
    background: #fff
}

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

.about-visual {
    position: relative;
    min-height: 390px
}

.about-main-card {
    min-height: 390px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: #eef7fd;
    overflow: hidden
}

.about-main-card image,
.about-main-card img {
    width: min(85%, 330px);
    height: auto
}

.experience-card {
    position: absolute;
    right: -25px;
    bottom: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow)
}

.experience-card strong {
    font-size: 30px;
    color: var(--primary)
}

.experience-card span {
    max-width: 120px;
    font-size: 12px;
    font-weight: 700
}

.about-content h3 {
    margin: 10px 0 20px;
    font-size: 35px;
    line-height: 1.15
}

.about-content>p {
    color: var(--muted);
    margin-bottom: 15px
}

.about-points {
    display: grid;
    gap: 18px;
    margin-top: 30px
}

.about-point {
    display: flex;
    gap: 13px
}

.check-circle {
    flex: 0 0 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(7, 151, 230, .10);
    color: var(--primary);
    font-weight: 900
}

.about-point strong,
.about-point span {
    display: block
}

.about-point strong {
    font-size: 14px
}

.about-point span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px
}

.services-section,
.blog-section,
.careers-section {
    background: var(--light)
}

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

.service-card {
    position: relative;
    min-height: 300px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(3, 28, 47, .04);
    transition: .25s
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(7, 151, 230, .25)
}

.service-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #aeb8c2;
    font-size: 12px;
    font-weight: 800
}

.service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 15px;
    background: rgba(7, 151, 230, .10);
    color: var(--primary);
    font-size: 23px;
    font-weight: 900
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px
}

.service-card p {
    min-height: 78px;
    color: var(--muted);
    font-size: 13px
}

.service-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800
}

.why-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center
}

.why-content>p {
    max-width: 500px;
    margin: 22px 0 28px;
    color: var(--muted)
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.why-card {
    display: flex;
    gap: 15px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff
}

.why-icon {
    flex: 0 0 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 800
}

.why-card h3 {
    margin-bottom: 6px;
    font-size: 15px
}

.why-card p {
    color: var(--muted);
    font-size: 12px
}

.stats-section {
    padding: 55px 0;
    background: var(--navy);
    color: #fff
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center
}

.stat-item {
    padding: 10px 20px;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.stat-item:last-child {
    border-right: 0
}

.stat-item strong {
    display: block;
    font-size: 40px;
    color: var(--primary)
}

.stat-item span {
    color: rgba(255, 255, 255, .60);
    font-size: 12px
}

/* blogs */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(7, 151, 230, .10);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(4, 24, 43, .07);
    transition: .25s;
    display: flex;
    flex-direction: column;
    min-height: 100%
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(4, 24, 43, .12)
}

.blog-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(7, 151, 230, .10);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 18px
}

.blog-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.35
}

.blog-card>p {
    color: #5d6875;
    line-height: 1.75;
    margin: 0 0 18px
}

.blog-card details {
    margin-top: auto
}

.blog-card summary {
    cursor: pointer;
    color: var(--primary);
    font-weight: 700;
    list-style: none;
    outline: 0
}

.blog-card summary::-webkit-details-marker {
    display: none
}

.blog-card summary:after {
    content: "  →"
}

.blog-card details[open] summary:after {
    content: "  ↑"
}

.blog-full {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8edf3;
    color: #566270;
    line-height: 1.8
}

.blog-full strong {
    color: #17202a
}

/* testimonials: 3 visible + side movement */
.testimonial-section {
    background: #fff;
    overflow: hidden
}

.testimonial-slider {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 18px
}

.testimonial-track {
    min-width: 0;
    display: flex;
    gap: 24px;
    transition: transform .55s cubic-bezier(.22, .61, .36, 1);
    will-change: transform
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px)/3);
    min-width: 0;
    min-height: 330px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(3, 28, 47, .07);
    display: flex;
    flex-direction: column
}

.quote-mark {
    color: var(--primary);
    font-size: 55px;
    line-height: .65;
    font-weight: 900;
    margin-bottom: 18px
}

.testimonial-card>p {
    flex: 1;
    color: #596675;
    font-size: 13px;
    line-height: 1.8
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 22px;
    margin-top: 20px;
    border-top: 1px solid var(--border)
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(7, 151, 230, .10);
    color: var(--primary);
    font-weight: 900
}

.testimonial-person strong,
.testimonial-person span {
    display: block
}

.testimonial-person strong {
    font-size: 13px
}

.testimonial-person span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px
}

.slider-button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(3, 28, 47, .15);
    transition: .2s;
    position: relative;
    z-index: 3
}

.slider-button:hover {
    background: var(--primary);
    transform: translateY(-2px)
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 28px
}

.testimonial-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: #ccd5dd;
    transition: .2s
}

.testimonial-dots button.active {
    width: 24px;
    border-radius: 999px;
    background: var(--primary)
}

.testimonial-source-note {
    text-align: center;
    margin-top: 24px;
    color: #6a7480;
    font-size: 13px
}

/* careers */
.careers-box {
    position: relative;
    min-height: 360px;
    padding: 60px;
    border-radius: 25px;
    overflow: hidden;
    background: var(--navy);
    color: #fff
}

.careers-content {
    position: relative;
    z-index: 2;
    max-width: 650px
}

.careers-content p {
    max-width: 560px;
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, .67)
}

.careers-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.career-circle {
    position: absolute;
    border: 1px solid rgba(7, 151, 230, .25);
    border-radius: 50%
}

.circle-one {
    width: 480px;
    height: 480px;
    right: -120px;
    top: -160px
}

.circle-two {
    width: 300px;
    height: 300px;
    right: 40px;
    top: -70px
}

.career-card-mini {
    position: absolute;
    right: 80px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(10px)
}

.career-card-mini span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800
}

.career-card-mini strong {
    margin-top: 4px;
    font-size: 14px
}

/* form */
.enquiry-section {
    background: #eef5f9
}

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

.enquiry-content {
    padding-top: 20px
}

.enquiry-content>p {
    max-width: 520px;
    margin: 22px 0 28px;
    color: var(--muted)
}

.enquiry-benefits {
    display: grid;
    gap: 13px
}

.enquiry-benefits>div {
    color: #43515e;
    font-size: 13px
}

.enquiry-benefits span {
    color: var(--primary);
    font-weight: 900;
    margin-right: 8px
}

.enquiry-form-wrapper {
    padding: 35px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow)
}

.form-header {
    margin-bottom: 25px
}

.form-header h3 {
    font-size: 25px
}

.form-header p {
    color: var(--muted);
    font-size: 13px
}

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

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dce3ea;
    border-radius: 10px;
    outline: 0;
    padding: 13px 14px;
    background: #fbfcfd;
    color: var(--text);
    font-size: 13px;
    transition: .2s
}

.form-group textarea {
    min-height: 130px;
    resize: vertical
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(7, 151, 230, .08)
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #df4050
}

.field-error {
    display: block;
    min-height: 17px;
    margin-top: 4px;
    color: #df4050;
    font-size: 11px
}

.form-submit {
    width: 100%;
    margin-top: 4px
}

.form-submit:disabled {
    opacity: .65;
    cursor: wait
}

.form-security {
    margin-top: 17px;
    color: #71808e;
    font-size: 10px;
    line-height: 1.5
}

.form-success {
    display: none;
    margin-top: 18px;
    padding: 15px;
    border-radius: 10px;
    background: #edf9f1;
    color: #237341
}

.form-success.show {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.form-success strong {
    font-size: 13px
}

.form-success span {
    font-size: 11px
}

/* contact/footer */
.contact-section {
    padding: 90px 0 105px;
    background: #f4f5fa
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px
}

.contact-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 15px;
    background: #fff;
    margin-bottom: 25px
}

.contact-logo-symbol {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eef7fd;
    color: var(--primary);
    font-size: 30px;
    font-weight: 900
}

.contact-logo strong,
.contact-logo span {
    display: block
}

.contact-logo strong {
    font-size: 18px
}

.contact-logo span {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.contact-intro>p {
    max-width: 500px;
    margin-bottom: 12px;
    color: #53606d;
    font-size: 14px
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px
}

.social-links a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(3, 28, 47, .06)
}

.contact-details {
    display: grid;
    gap: 15px
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(3, 28, 47, .05)
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #eef7fd;
    color: var(--primary);
    font-size: 22px
}

.contact-card span,
.contact-card strong,
.contact-card small {
    display: block
}

.contact-card span {
    color: #647180;
    font-size: 11px;
    font-weight: 700
}

.contact-card strong {
    margin-top: 4px;
    font-size: 14px
}

.contact-card small {
    margin-top: 3px;
    color: var(--primary);
    font-size: 10px
}

.map-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    margin-top: 8px;
    border-radius: 18px;
    background: #dfe8ee
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.map-button {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 9px 13px;
    border-radius: 9px;
    background: #fff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.site-footer {
    padding: 25px 0;
    background: #df2039;
    color: #fff;
    font-size: 12px
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

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

.footer-links a {
    opacity: .85
}

/* floating buttons */
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18)
}

.whatsapp-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    padding: 8px 11px;
    border-radius: 7px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: .2s
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0)
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 95px;
    z-index: 899;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .2s
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

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

/* responsive */
@media(max-width:1100px) {
    .desktop-nav {
        gap: 15px
    }

    .hero-container,
    .about-grid,
    .why-grid,
    .enquiry-grid,
    .contact-grid {
        gap: 45px
    }

    .testimonial-card {
        flex-basis: calc((100% - 24px)/2)
    }
}

@media(max-width:900px) {
    .section {
        padding: 80px 0
    }

    .desktop-nav {
        display: none
    }

    .mobile-menu-button {
        display: block
    }

    .mobile-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 5px);
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 15px;
        border-radius: 15px;
        background: var(--navy);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: .2s
    }

    .mobile-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0)
    }

    .mobile-nav a {
        padding: 12px;
        border-radius: 8px;
        color: #fff;
        font-size: 13px;
        font-weight: 600
    }

    .mobile-nav a:hover {
        background: rgba(255, 255, 255, .08)
    }

    .mobile-nav-cta {
        text-align: center;
        margin-top: 5px
    }

    .hero-section {
        min-height: auto;
        padding: 130px 0 80px
    }

    .hero-container {
        grid-template-columns: 1fr
    }

    .hero-content h1 {
        max-width: 800px
    }

    .hero-visual {
        max-width: 650px;
        margin: 0 auto;
        width: 100%
    }

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

    .about-grid,
    .why-grid,
    .enquiry-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .about-visual {
        max-width: 600px;
        width: 100%;
        margin: 0 auto
    }

    .why-content {
        max-width: 700px
    }

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

    .stat-item:nth-child(2) {
        border-right: 0
    }

    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding-bottom: 25px
    }

    .stat-item:nth-child(n+3) {
        padding-top: 25px
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .testimonial-slider {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 10px
    }

    .slider-button {
        width: 46px;
        height: 46px
    }

    .testimonial-card {
        flex-basis: calc((100% - 24px)/2)
    }
}

@media(max-width:650px) {
    .container {
        width: min(var(--container), calc(100% - 28px))
    }

    .section {
        padding: 65px 0
    }

    .hero-content h1 {
        font-size: 50px
    }

    .hero-description {
        font-size: 15px
    }

    .hero-trust {
        gap: 14px;
        margin-top: 35px
    }

    .trust-item strong {
        font-size: 23px
    }

    .floating-card {
        display: none
    }

    .hero-chart {
        height: 220px
    }

    .services-grid,
    .why-cards,
    .form-row,
    .blog-grid,
    .stats-grid {
        grid-template-columns: 1fr
    }

    .stat-item {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
        padding: 18px 20px !important
    }

    .stat-item:last-child {
        border-bottom: 0 !important
    }

    .testimonial-slider {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 7px
    }

    .testimonial-track {
        gap: 0
    }

    .testimonial-card {
        flex-basis: 100%;
        min-height: 350px;
        padding: 24px
    }

    .slider-button {
        width: 42px;
        height: 42px;
        font-size: 18px
    }

    .testimonial-dots {
        flex-wrap: wrap;
        max-width: 300px;
        margin-inline: auto
    }

    .careers-box {
        padding: 38px 28px
    }

    .career-card-mini {
        display: none
    }

    .circle-one {
        right: -250px
    }

    .circle-two {
        right: -100px
    }

    .enquiry-form-wrapper {
        padding: 24px 18px
    }

    .contact-card {
        align-items: flex-start
    }

    .footer-container {
        flex-direction: column;
        text-align: center
    }

    .whatsapp-button {
        right: 15px;
        bottom: 15px;
        width: 56px;
        height: 56px
    }

    .back-to-top {
        right: 15px;
        bottom: 82px
    }
}