﻿/* =========================================================
   HUZAIFA TECH PRO
   Global Styles
   ========================================================= */

:root {
    --navy: #071d38;
    --navy-2: #0b2a4d;
    --blue: #0879d1;
    --blue-dark: #0564ad;
    --cyan: #11a7e8;
    --green: #16a968;
    --green-dark: #098653;
    --orange: #f28a25;
    --yellow: #f4b72d;
    --white: #ffffff;
    --off-white: #f7fafd;
    --light: #eef4f9;
    --border: #dce6ef;
    --text: #16283b;
    --muted: #64778a;
    --shadow: 0 15px 45px rgba(8, 35, 65, .10);
    --radius: 18px;
    --container: 1180px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min( calc(100% - 40px), var(--container) );
    margin-inline: auto;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.85);
    font-size: 20px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-divider {
    width: 1px;
    height: 17px;
    background: rgba(255,255,255,.2);
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: white;
}

    .top-phone strong {
        color: #67d3ff;
    }


/* =========================================================
   HEADER
   ========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* BRAND */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 150px;
    height: 65px;
    object-fit: contain;
    border-radius: 12px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

    .brand-text strong {
        color: var(--navy);
        font-size: 19px;
        line-height: 1.2;
    }

    .brand-text span {
        color: var(--muted);
        font-size: 11px;
        margin-top: 2px;
    }


/* MENU */

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-inline: auto;
}

    .desktop-menu a {
        color: #34485c;
        font-size: 20px;
        font-weight: 600;
        transition: .2s ease;
    }

        .desktop-menu a:hover {
            color: var(--blue);
        }


/* ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-button {
    border: 1px solid var(--border);
    background: white;
    color: var(--navy);
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
}

    .language-button span {
        color: var(--blue);
        margin-inline-end: 5px;
    }

.nav-call {
    background: var(--blue);
    color: white;
    padding: 11px 17px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

    .nav-call:hover {
        background: var(--blue-dark);
        transform: translateY(-1px);
    }


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #061d38 0%, #0b2d50 60%, #084b79 100% );
    color: white;
    padding: 78px 0 85px;
}

    .hero-section::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(21,165,230,.25), transparent 65% );
        top: -280px;
        right: -160px;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(10,128,210,.18), transparent 65% );
        bottom: -300px;
        left: -150px;
    }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
    gap: 65px;
    align-items: center;
}


/* HERO TEXT */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    padding: 8px 13px;
    border-radius: 50px;
    color: #bcecff;
    font-size: 20px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38d58c;
    box-shadow: 0 0 0 5px rgba(56,213,140,.12);
}

.hero-content h1 {
    margin: 0 0 22px;
    font-size: clamp(35px, 4.3vw, 60px);
    line-height: 1.12;
    letter-spacing: -.8px;
    max-width: 760px;
    color: #ffffff;
}

.hero-description {
    color: rgba(255,255,255,.78);
    font-size: 20px;
    line-height: 1.9;
    max-width: 650px;
    margin: 0 0 30px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.button {
    min-height: 51px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.button-primary {
    background: white;
    color: var(--navy);
}

    .button-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,.18);
    }

.button-whatsapp {
    background: #16b86e;
    color: white;
}

    .button-whatsapp:hover {
        background: #0b9958;
        transform: translateY(-2px);
    }

.whatsapp-symbol {
    font-size: 17px;
}


/* HERO TRUST */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255,255,255,.85);
    font-size: 20px;
}

    .hero-trust div {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .hero-trust span {
        color: #42dc94;
        font-weight: 900;
    }


/* HERO IMAGE */

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    border: 4px solid rgba(52,193,255,.55);
    box-shadow: 0 30px 70px rgba(0,0,0,.3);
}

.hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    left: -25px;
    bottom: 25px;
    background: white;
    color: var(--text);
    padding: 14px 17px;
    border-radius: 13px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e7f9f0;
    color: var(--green);
    font-weight: 900;
}

.hero-floating-card strong,
.hero-floating-card span {
    display: block;
}

.hero-floating-card strong {
    font-size: 13px;
}

.hero-floating-card span {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 95px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    margin: 9px 0 12px;
    color: var(--navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(8,35,65,.05);
    transition: .25s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(8,35,65,.12);
    }

.service-card-large {
    display: flex;
    flex-direction: column;
}

.service-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-image-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(7,29,56,.9);
    color: white;
    padding: 7px 12px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.service-body {
    padding: 28px;
}

.service-icon,
.simple-service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-size: 24px;
    margin-bottom: 17px;
}

    .service-icon.blue,
    .simple-service-icon.blue {
        background: #e8f5ff;
        color: var(--blue);
    }

    .service-icon.orange,
    .simple-service-icon.orange {
        background: #fff2e5;
        color: var(--orange);
    }

    .service-icon.green,
    .simple-service-icon.green {
        background: #e7f8ef;
        color: var(--green);
    }

.service-body h3,
.service-card > h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 23px;
}

.service-body p,
.service-card > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 18px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    color: #455a6d;
    font-size: 13px;
}

    .service-list li {
        color: var(--green);
        font-weight: 700;
    }

.service-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

    .service-link span {
        transition: .2s;
    }

    .service-link:hover span {
        transform: translateX(4px);
    }

.service-card:not(.service-card-large) {
    padding: 30px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    background: linear-gradient( 100deg, var(--blue-dark), var(--blue) );
    color: white;
    padding: 52px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .cta-inner > div:first-child > span {
        color: rgba(255,255,255,.7);
        font-size: 13px;
    }

    .cta-inner h2 {
        margin: 4px 0 0;
        font-size: 30px;
    }

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.button-white {
    background: white;
    color: var(--navy);
}

.button-cta-whatsapp {
    background: #16b86e;
    color: white;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 75px;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        aspect-ratio: 4 / 4.5;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

.about-experience {
    position: absolute;
    bottom: 25px;
    right: -25px;
    background: var(--navy);
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
}

    .about-experience strong {
        font-size: 36px;
        color: #5ed4ff;
        line-height: 1;
    }

    .about-experience span {
        font-size: 11px;
        margin-top: 8px;
    }

.about-content h2 {
    color: var(--navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.3;
    margin: 10px 0 18px;
}

.about-content > p {
    color: var(--muted);
    line-height: 1.95;
    font-size: 15px;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 14px;
}

    .about-feature > span {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #e7f8ef;
        color: var(--green);
        font-weight: 900;
    }

    .about-feature strong {
        display: block;
        color: var(--navy);
        font-size: 15px;
    }

    .about-feature p {
        margin: 2px 0 0;
        color: var(--muted);
        font-size: 13px;
    }


/* =========================================================
   STATS
   ========================================================= */

.stats-section {
    background: var(--navy);
    color: white;
    padding: 58px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px;
    border-inline-end: 1px solid rgba(255,255,255,.12);
}

    .stat-item:last-child {
        border-inline-end: 0;
    }

    .stat-item strong {
        display: block;
        color: #5ed4ff;
        font-size: 39px;
        line-height: 1.1;
    }

    .stat-item span {
        color: rgba(255,255,255,.68);
        font-size: 13px;
    }


/* =========================================================
   AREAS
   ========================================================= */

.areas-section {
    background: var(--off-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.area-item {
    background: white;
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 10px;
    color: #34495b;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .area-item span {
        color: var(--blue);
    }


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding: 95px 0;
    background: linear-gradient( 135deg, #071d38, #0b355a );
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 70px;
    align-items: start;
}

.section-label.light {
    color: #64d4ff;
}

.contact-information h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    margin: 9px 0 16px;
}

.contact-information > p {
    color: rgba(255,255,255,.7);
    line-height: 1.9;
    max-width: 550px;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: 13px;
    border-radius: 12px;
    transition: .2s;
}

    .contact-box:hover {
        background: rgba(255,255,255,.11);
    }

.contact-box-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(20,153,220,.2);
    color: #6bd8ff;
}

    .contact-box-icon.whatsapp {
        background: rgba(22,185,110,.2);
        color: #4fe099;
    }

.contact-box small {
    display: block;
    color: rgba(255,255,255,.5);
    font-size: 15px;
}

.contact-box strong {
    display: block;
    color: white;
    font-size: 14px;
}


/* FORM */

.contact-form {
    background: white;
    color: var(--text);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 25px 65px rgba(0,0,0,.25);
}

    .contact-form h3 {
        color: var(--navy);
        font-size: 26px;
        margin: 0 0 5px;
    }

    .contact-form > p {
        color: var(--muted);
        font-size: 13px;
        margin: 0 0 25px;
    }

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        color: #34495b;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 7px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        border: 1px solid var(--border);
        background: #f9fbfd;
        color: var(--text);
        padding: 12px 13px;
        border-radius: 8px;
        outline: none;
        font-size: 13px;
        transition: .2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--blue);
            background: white;
            box-shadow: 0 0 0 3px rgba(8,121,209,.08);
        }

    .form-group textarea {
        resize: vertical;
    }

.submit-button {
    width: 100%;
    border: 0;
    background: var(--blue);
    color: white;
    min-height: 49px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    transition: .2s;
}

    .submit-button:hover {
        background: var(--blue-dark);
        transform: translateY(-1px);
    }

    .submit-button span {
        margin-inline-start: 7px;
    }

.success-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    background: #e7f8ef;
    color: #087845;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #041426;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr .9fr 1fr;
    gap: 45px;
    padding: 65px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

    .footer-brand img {
        width: 55px;
        height: 55px;
        object-fit: contain;
        border-radius: 10px;
    }

    .footer-brand strong,
    .footer-brand span {
        display: block;
    }

    .footer-brand strong {
        color: white;
        font-size: 17px;
    }

    .footer-brand span {
        color: #6c8296;
        font-size: 10px;
    }

.footer-company > p {
    color: #8193a5;
    font-size: 13px;
    line-height: 1.9;
    max-width: 340px;
    margin-top: 17px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

    .footer-column h4 {
        margin: 0 0 10px;
        color: white;
        font-size: 15px;
    }

    .footer-column a,
    .footer-column span {
        color: #8396a8;
        font-size: 15px;
        transition: .2s;
    }

        .footer-column a:hover {
            color: #5ed4ff;
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #65798b;
    font-size: 15px;
}

.footer-bottom strong {
    color: #9db0c0;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    z-index: 1500;
    bottom: 22px;
    right: 22px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #16b86e;
    color: white;
    font-size: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
    border: 3px solid white;
    transition: .25s;
}

    .floating-whatsapp:hover {
        transform: scale(1.08);
        background: #0b9958;
    }


/* =========================================================
   RTL
   ========================================================= */

[dir="rtl"] {
    text-align: right;
}

    [dir="rtl"] .desktop-menu,
    [dir="rtl"] .nav-actions {
        direction: rtl;
    }

    [dir="rtl"] .hero-content,
    [dir="rtl"] .about-content,
    [dir="rtl"] .contact-information {
        text-align: right;
    }

    [dir="rtl"] .hero-floating-card {
        left: auto;
        right: -25px;
    }

    [dir="rtl"] .service-link span:hover {
        transform: translateX(-4px);
    }

    [dir="rtl"] .floating-whatsapp {
        right: auto;
        left: 22px;
    }

    [dir="rtl"] .about-experience {
        right: auto;
        left: -25px;
    }


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1050px) {

    .desktop-menu {
        gap: 15px;
    }

        .desktop-menu a {
            font-size: 12px;
        }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 850px) {

    .topbar-left {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .desktop-menu {
        display: none;
    }

    .nav-container {
        min-height: 72px;
    }

    .brand-logo {
        width: 47px;
        height: 47px;
    }

    .nav-call {
        display: none;
    }

    .hero-section {
        padding: 55px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 620px;
        width: 100%;
        margin-inline: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image {
        max-width: 650px;
        margin-inline: auto;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        text-align: right;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-inline-end: 0;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-information {
        text-align: center;
    }

        .contact-information > p {
            margin-inline: auto;
        }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}


@media (max-width: 600px) {

    .container {
        width: min( calc(100% - 28px), var(--container) );
    }

    .section {
        padding: 70px 0;
    }

    .top-phone {
        font-size: 20px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .language-button {
        padding: 8px 10px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero-floating-card {
        left: 10px;
        bottom: 10px;
    }

    [dir="rtl"] .hero-floating-card {
        left: auto;
        right: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .cta-inner h2 {
        font-size: 25px;
    }

    .cta-actions {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding-bottom: 20px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 23px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 0;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        bottom: 16px;
        right: 16px;
    }

    [dir="rtl"] .floating-whatsapp {
        right: auto;
        left: 16px;
    }
}
