/* =====================================================
   HIGHCLEANLINESS
   MAIN STYLE
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: #ffffff;
    color: #14213d;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --primary: #087f8c;
    --primary-dark: #05616c;
    --secondary: #00a6a6;

    --dark: #102a43;
    --text: #52606d;
    --white: #ffffff;

    --light: #f5f9fa;

    --border: rgba(255, 255, 255, 0.18);

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.12);

    --transition: 0.3s ease;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    right: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(7, 30, 45, 0.20);

    backdrop-filter: blur(10px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.10);

    transition: var(--transition);
}


.header.scrolled {
    background: rgba(7, 30, 45, 0.95);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   LOGO
===================================================== */

.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--white);

    flex-shrink: 0;
}


.logo-mark {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--secondary),
            var(--primary)
        );

    color: white;

    font-size: 16px;

    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(0, 166, 166, 0.25);
}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

    font-size: 11px;

    letter-spacing: 0.5px;
}

.logo-text strong {
    font-size: 19px;
    font-weight: 800;
}

.logo-text span {
    opacity: 0.85;
}


/* =====================================================
   NAV LINKS
===================================================== */

.nav-links {

    list-style: none;

    display: flex;

    align-items: center;

    gap: 32px;

    margin-right: auto;
    margin-left: auto;
}


.nav-links a {

    position: relative;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;

    font-weight: 600;

    padding: 10px 0;

    transition: var(--transition);
}


.nav-links a:hover,
.nav-links a.active {
    color: white;
}


.nav-links a::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 2px;

    width: 0;

    height: 2px;

    background: var(--secondary);

    border-radius: 10px;

    transition: var(--transition);
}


.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =====================================================
   CALL BUTTON
===================================================== */

.nav-call {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 18px;

    background: white;

    color: var(--primary);

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

    white-space: nowrap;
}


.nav-call:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-btn {

    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.08);

    color: white;

    border-radius: 10px;

    font-size: 18px;

    cursor: pointer;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    top: 82px;
    right: 0;

    width: 100%;

    z-index: 999;

    background: rgba(7, 30, 45, 0.98);

    backdrop-filter: blur(15px);

    transform: translateY(-20px);

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);
}


.mobile-menu.open {

    transform: translateY(0);

    opacity: 1;

    visibility: visible;
}


.mobile-menu-inner {

    width: min(1180px, calc(100% - 40px));

    margin: auto;

    padding: 20px 0 25px;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.mobile-menu-inner > a {

    color: white;

    padding: 13px 15px;

    border-radius: 8px;

    font-size: 14px;

    transition: var(--transition);
}


.mobile-menu-inner > a:hover {

    background: rgba(255,255,255,0.08);

    color: #5ce1e6;
}


.mobile-call {

    margin-top: 10px;

    background: var(--secondary) !important;

    text-align: center;

    font-weight: 700;
}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        linear-gradient(
            110deg,
            #061d2b 0%,
            #073b4c 48%,
            #087f8c 100%
        );

    padding:
        130px 0
        80px;
}


/* Decorative Background */

.hero::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 210, 210, 0.20),
            transparent 65%
        );

    top: -250px;
    left: -200px;

    pointer-events: none;
}


.hero::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.08);

    right: -200px;
    bottom: -200px;

    box-shadow:
        0 0 0 70px rgba(255,255,255,0.025),
        0 0 0 140px rgba(255,255,255,0.015);

    pointer-events: none;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 70px;
}


/* =====================================================
   HERO TEXT
===================================================== */

.hero-text {

    color: white;

    max-width: 620px;
}


.hero-badge {

    width: fit-content;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 7px 13px;

    margin-bottom: 22px;

    background:
        rgba(255,255,255,0.09);

    border:
        1px solid rgba(255,255,255,0.13);

    border-radius: 50px;

    color:
        rgba(255,255,255,0.9);

    font-size: 12px;

    font-weight: 600;
}


.badge-dot {

    width: 7px;
    height: 7px;

    background: #4ee4c1;

    border-radius: 50%;

    box-shadow:
        0 0 12px #4ee4c1;
}


.hero h1 {

    font-size:
        clamp(38px, 5vw, 67px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 22px;
}


.hero h1 span {

    display: block;

    color: #5ce1e6;
}


.hero-text > p {

    max-width: 560px;

    color:
        rgba(255,255,255,0.76);

    font-size: 16px;

    line-height: 2;

    margin-bottom: 30px;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.btn {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);
}


.btn-primary {

    background: white;

    color: var(--primary);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.15);
}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(0,0,0,0.22);
}


.btn-whatsapp {

    background: #25d366;

    color: white;
}


.btn-whatsapp:hover {

    transform: translateY(-3px);

    background: #20bc59;

    box-shadow:
        0 12px 25px rgba(37,211,102,0.22);
}


/* =====================================================
   TRUST ITEMS
===================================================== */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,0.12);
}


.trust-item {

    display: flex;

    align-items: center;

    gap: 11px;
}


.trust-icon {

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    background:
        rgba(255,255,255,0.09);

    border-radius: 9px;

    color: #5ce1e6;

    font-size: 14px;
}


.trust-item div:last-child {

    display: flex;

    flex-direction: column;

    gap: 1px;
}


.trust-item strong {

    font-size: 11px;

    font-weight: 700;

    color: white;
}


.trust-item span {

    font-size: 9px;

    color:
        rgba(255,255,255,0.55);
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image-wrapper {

    position: relative;

    min-height: 530px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-glow {

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 215, 215, 0.30),
            transparent 65%
        );

    filter: blur(5px);
}


.hero-image-circle {

    position: relative;

    width: min(460px, 90%);

    aspect-ratio: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.20),
            rgba(255,255,255,0.04)
        );

    border:
        1px solid rgba(255,255,255,0.20);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);

    backdrop-filter: blur(5px);
}


.hero-image-circle::before {

    content: "";

    position: absolute;

    inset: 18px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.12);
}


.hero-image-circle img {

    position: relative;

    z-index: 2;

    width: 90%;

    height: 90%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 25px rgba(0,0,0,0.35)
        );
}


/* =====================================================
   FLOATING CARD
===================================================== */

.hero-floating-card {

    position: absolute;

    right: 0;

    bottom: 70px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 16px;

    background:
        rgba(255,255,255,0.96);

    color: var(--dark);

    border-radius: 12px;

    box-shadow:
        0 18px 45px rgba(0,0,0,0.22);

    animation:
        floating 3s ease-in-out infinite;
}


.floating-icon {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        rgba(8,127,140,0.10);

    color: var(--primary);
}


.hero-floating-card div:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1.5;
}


.hero-floating-card strong {

    font-size: 11px;
}


.hero-floating-card span {

    font-size: 9px;

    color: var(--text);
}


@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =====================================================
   SCROLL DOWN
===================================================== */

.scroll-down {

    position: absolute;

    z-index: 5;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 9px;

    color:
        rgba(255,255,255,0.60);

    font-size: 10px;

    transition: var(--transition);
}


.scroll-down:hover {

    color: white;

    transform:
        translateX(-50%)
        translateY(-3px);
}


.scroll-down i {

    animation:
        bounce 1.5s infinite;
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .nav-links {
        gap: 20px;
    }

    .hero-content {

        grid-template-columns:
            1fr
            0.85fr;

        gap: 35px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-image-wrapper {
        min-height: 450px;
    }

    .hero-image-circle {
        width: 380px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .container {
        width: min(100% - 30px, 600px);
    }


    .navbar {
        min-height: 72px;
    }


    .nav-links,
    .nav-call {
        display: none;
    }


    .menu-btn {
        display: grid;

        place-items: center;
    }


    .mobile-menu {
        top: 72px;
    }


    .hero {

        padding:
            120px 0
            70px;

        min-height: auto;
    }


    .hero-content {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 30px;
    }


    .hero-text {
        max-width: none;
    }


    .hero-badge {
        margin:
            0 auto
            20px;
    }


    .hero h1 {

        font-size:
            clamp(34px, 10vw, 48px);

        letter-spacing: -1px;
    }


    .hero-text > p {

        margin:
            0 auto
            25px;

        font-size: 14px;
    }


    .hero-buttons {

        justify-content: center;
    }


    .hero-trust {

        justify-content: center;

        gap: 18px;
    }


    .hero-image-wrapper {

        min-height: 360px;

        order: 2;
    }


    .hero-image-circle {

        width: 320px;
    }


    .hero-floating-card {

        right: 4%;

        bottom: 25px;
    }


    .scroll-down {
        display: none;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .logo-mark {

        width: 42px;
        height: 42px;

        border-radius: 11px;
    }


    .logo-text strong {
        font-size: 16px;
    }


    .hero {

        padding-top: 110px;
    }


    .hero h1 {
        font-size: 34px;
    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;
    }


    .btn {

        width: 100%;
    }


    .hero-trust {

        flex-direction: column;

        align-items: flex-start;

        width: fit-content;

        margin:
            30px auto
            0;
    }


    .hero-image-wrapper {
        min-height: 320px;
    }


    .hero-image-circle {
        width: 280px;
    }


    .hero-floating-card {

        right: 0;

        padding: 10px 12px;
    }

}
/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {
    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


/* Decorative Shape */

.services-section::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -180px;
    left: -180px;

    border-radius: 50%;

    background:
        rgba(0, 166, 166, 0.05);

    pointer-events: none;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;
}


.section-heading h2 {
    margin-bottom: 15px;

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 44px);

    line-height: 1.3;

    font-weight: 800;
}


.section-heading h2 span {
    color: var(--primary);
}


.section-heading p {
    color: var(--text);

    font-size: 14px;

    line-height: 2;

    max-width: 600px;

    margin: auto;
}


/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {

    position: relative;

    padding: 30px 25px;

    background: #ffffff;

    border:
        1px solid #e8eef0;

    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--secondary),
            var(--primary)
        );

    transition:
        width 0.35s ease;
}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(8, 127, 140, 0.25);

    box-shadow:
        0 20px 45px
        rgba(16, 42, 67, 0.10);
}


.service-card:hover::before {
    width: 100%;
}


/* =====================================================
   SERVICE NUMBER
===================================================== */

.service-number {

    position: absolute;

    top: 15px;
    left: 18px;

    color:
        rgba(8, 127, 140, 0.10);

    font-size: 32px;

    font-weight: 900;

    line-height: 1;

    transition:
        color 0.3s ease;
}


.service-card:hover .service-number {

    color:
        rgba(8, 127, 140, 0.17);
}


/* =====================================================
   SERVICE ICON
===================================================== */

.service-icon {

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background:
        rgba(8, 127, 140, 0.08);

    color: var(--primary);

    font-size: 23px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.service-card:hover .service-icon {

    background:
        var(--primary);

    color: #ffffff;

    transform:
        translateY(-3px)
        rotate(-4deg);
}


/* =====================================================
   SERVICE TITLE
===================================================== */

.service-card h3 {

    margin-bottom: 10px;

    color: var(--dark);

    font-size: 17px;

    font-weight: 800;
}


/* =====================================================
   SERVICE DESCRIPTION
===================================================== */

.service-card p {

    min-height: 76px;

    margin-bottom: 20px;

    color: var(--text);

    font-size: 12px;

    line-height: 1.9;
}


/* =====================================================
   SERVICE LINK
===================================================== */

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}


.service-link:hover {

    gap: 13px;

    color:
        var(--primary-dark);
}


.service-link i {
    font-size: 10px;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.services-bottom {

    margin-top: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    padding: 20px 25px;

    background:
        var(--light);

    border-radius: 12px;
}


.services-bottom p {

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;
}


.services-bottom a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 800;
}


.services-bottom a:hover {
    color: var(--primary-dark);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .services-section {
        padding: 90px 0;
    }

    .services-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 750px) {

    .services-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-icon {
        width: 55px;
        height: 55px;

        font-size: 20px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        min-height: 95px;

        font-size: 11px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .services-bottom {
        flex-direction: column;

        text-align: center;
    }

}
/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {
    position: relative;

    padding: 110px 0;

    background: #f7fafb;

    overflow: hidden;
}


/* Decorative Circle */

.about-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -250px;

    border-radius: 50%;

    border: 70px solid rgba(8, 127, 140, 0.035);

    pointer-events: none;
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


/* =====================================================
   ABOUT IMAGE
===================================================== */

.about-image {

    position: relative;

    padding: 15px;

}


/* Main Image Container */

.about-image-main {

    position: relative;

    width: 100%;

    height: 500px;

    overflow: hidden;

    border-radius: 24px;

    background: #e9eff1;

    box-shadow:
        0 25px 60px
        rgba(16, 42, 67, 0.14);

}


/* Image Overlay */

.about-image-main::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.18)
        );

    pointer-events: none;

    z-index: 2;

}


/* Actual Image */

.about-image-main img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    /*
       الصورة الأصلية طولية،
       لذلك نرفع موضع الصورة قليلاً
       لإظهار الشاحنة بشكل أفضل.
    */

    object-position: center 62%;

    transition:
        transform 0.6s ease;

}


/* Hover */

.about-image:hover
.about-image-main img {

    transform: scale(1.035);

}



/* =====================================================
   EXPERIENCE CARD
===================================================== */

.about-experience {

    position: absolute;

    right: -15px;
    bottom: 45px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 145px;
    height: 115px;

    border-radius: 18px;

    background: var(--primary);

    color: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(8, 127, 140, 0.25);
}


.about-experience strong {

    font-size: 28px;

    line-height: 1;

    font-weight: 900;
}


.about-experience span {

    margin-top: 8px;

    font-size: 11px;

    font-weight: 600;

    opacity: 0.9;
}


/* =====================================================
   ABOUT TEXT
===================================================== */

.about-text {
    position: relative;

    z-index: 2;
}


.about-text > .section-label {
    margin-bottom: 10px;
}


.about-text h2 {

    margin-bottom: 22px;

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.35;

    font-weight: 900;
}


.about-text h2 span {
    display: block;

    color: var(--primary);
}


.about-text p {

    margin-bottom: 16px;

    color: var(--text);

    font-size: 14px;

    line-height: 2;
}


.about-text .about-intro {

    color: #435965;

    font-size: 15px;

    font-weight: 600;
}


/* =====================================================
   ABOUT FEATURES
===================================================== */

.about-features {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    margin: 30px 0;
}


.about-feature {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 16px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #e7edef;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-feature:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(16, 42, 67, 0.07);
}


.about-feature-icon {

    flex-shrink: 0;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        rgba(8, 127, 140, 0.09);

    color: var(--primary);

    font-size: 16px;
}


.about-feature h3 {

    margin-bottom: 4px;

    color: var(--dark);

    font-size: 13px;

    font-weight: 800;
}


.about-feature p {

    margin: 0;

    font-size: 11px;

    line-height: 1.7;
}


/* =====================================================
   ABOUT BUTTON
===================================================== */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    border-radius: 9px;

    background: var(--primary);

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.about-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(8, 127, 140, 0.22);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .about-content {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-image {

        max-width: 650px;

        width: 100%;

        margin: auto;
    }


    .about-image-main {
        height: 430px;
    }


    .about-text {
        max-width: 700px;

        margin: auto;

        text-align: center;
    }


    .about-text h2 span {
        display: inline;
    }


    .about-features {
        text-align: right;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-section {
        padding: 75px 0;
    }


    .about-image {
        padding: 8px;
    }


    .about-image-main {

        height: 350px;

        border-radius: 18px;
    }


    .about-image::before {

        transform:
            translate(9px, 9px);

        border-radius: 21px;
    }


    .about-experience {

        right: -5px;

        bottom: 25px;

        width: 120px;

        height: 95px;
    }


    .about-experience strong {
        font-size: 23px;
    }


    .about-text h2 {
        font-size: 30px;
    }


    .about-text p {
        font-size: 13px;
    }


    .about-features {

        grid-template-columns: 1fr;

        gap: 12px;

        text-align: right;
    }


    .about-btn {
        padding: 13px 22px;
    }

}
/* =====================================================
   WHY CHOOSE US
===================================================== */

.why-section {
    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   CONTENT
===================================================== */

.why-content {

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


/* =====================================================
   TEXT
===================================================== */

.why-text h2 {

    margin-bottom: 20px;

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 44px);

    line-height: 1.4;

    font-weight: 900;
}


.why-text h2 span {

    display: block;

    color: var(--primary);
}


.why-text > p {

    max-width: 620px;

    margin-bottom: 30px;

    color: var(--text);

    font-size: 14px;

    line-height: 2;
}


/* =====================================================
   WHY LIST
===================================================== */

.why-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-bottom: 30px;
}


.why-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;
}


.why-check {

    flex-shrink: 0;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(8, 127, 140, 0.09);

    color: var(--primary);

    font-size: 14px;
}


.why-item h3 {

    margin-bottom: 4px;

    color: var(--dark);

    font-size: 15px;

    font-weight: 800;
}


.why-item p {

    margin: 0;

    color: var(--text);

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   BUTTON
===================================================== */

.why-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    border-radius: 9px;

    background: var(--primary);

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.why-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(8, 127, 140, 0.22);
}


/* =====================================================
   VISUAL
===================================================== */

.why-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Main Card */

.why-main-card {

    position: relative;

    z-index: 2;

    width: 330px;

    min-height: 360px;

    padding: 45px 35px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            var(--primary),
            #075e69
        );

    color: #ffffff;

    box-shadow:
        0 30px 70px
        rgba(8, 127, 140, 0.25);

    overflow: hidden;
}


.why-main-card::before {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    border: 45px solid
        rgba(255,255,255,0.07);
}


.why-card-icon {

    width: 82px;
    height: 82px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 22px;

    background:
        rgba(255,255,255,0.13);

    font-size: 34px;
}


.why-main-card > span {

    margin-bottom: 8px;

    font-size: 12px;

    opacity: 0.75;
}


.why-main-card strong {

    margin-bottom: 14px;

    font-size: 25px;

    font-weight: 900;
}


.why-main-card p {

    max-width: 230px;

    margin: 0;

    font-size: 12px;

    line-height: 1.9;

    opacity: 0.85;
}


/* =====================================================
   FLOATING STATS
===================================================== */

.why-stat {

    position: absolute;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(16, 42, 67, 0.12);

    border: 1px solid #edf1f2;
}


.why-stat > i {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(8, 127, 140, 0.08);

    color: var(--primary);

    font-size: 14px;
}


.why-stat div {

    display: flex;

    flex-direction: column;
}


.why-stat strong {

    color: var(--dark);

    font-size: 12px;
}


.why-stat span {

    color: var(--text);

    font-size: 10px;
}


.stat-one {

    top: 75px;

    right: 5px;
}


.stat-two {

    bottom: 70px;

    left: 0;
}


/* =====================================================
   DECORATIVE CIRCLES
===================================================== */

.why-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.circle-one {

    width: 300px;
    height: 300px;

    border: 1px solid
        rgba(8, 127, 140, 0.10);
}


.circle-two {

    width: 400px;
    height: 400px;

    border: 1px dashed
        rgba(8, 127, 140, 0.08);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .why-content {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .why-text {

        max-width: 700px;

        margin: auto;

        text-align: center;
    }


    .why-text h2 span {

        display: inline;
    }


    .why-text > p {

        margin-left: auto;
        margin-right: auto;
    }


    .why-item {

        text-align: right;
    }


    .why-visual {

        max-width: 600px;

        width: 100%;

        margin: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .why-section {

        padding: 75px 0;
    }


    .why-main-card {

        width: 280px;

        min-height: 330px;

        padding: 35px 25px;
    }


    .why-main-card strong {

        font-size: 21px;
    }


    .why-stat {

        padding: 10px 12px;
    }


    .stat-one {

        right: -5px;

        top: 60px;
    }


    .stat-two {

        left: -5px;

        bottom: 55px;
    }


    .why-item p {

        font-size: 11px;
    }

}
/* =====================================================
   GALLERY SECTION
===================================================== */

.gallery-section {
    position: relative;

    padding: 110px 0;

    background: #f7fafb;

    overflow: hidden;
}


/* =====================================================
   GALLERY HEADER
===================================================== */

.gallery-heading {
    max-width: 650px;

    margin-bottom: 55px;
}


/* =====================================================
   GALLERY GRID
===================================================== */

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 250px;

    gap: 18px;
}


/* =====================================================
   GALLERY ITEM
===================================================== */

.gallery-item {

    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 18px;

    background: #dfe7e9;

    box-shadow:
        0 12px 35px
        rgba(16, 42, 67, 0.08);
}


.gallery-item img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.gallery-item:hover img {

    transform:
        scale(1.08);
}


/* =====================================================
   LARGE ITEM
===================================================== */

.gallery-large {

    grid-column:
        span 2;

    grid-row:
        span 2;
}


/* =====================================================
   WIDE ITEM
===================================================== */

.gallery-wide {

    grid-column:
        span 2;
}


/* =====================================================
   OVERLAY
===================================================== */

.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    padding: 25px;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(4, 25, 31, 0.82) 100%
        );

    color: #ffffff;

    opacity: 0;

    transition:
        opacity 0.35s ease;
}


.gallery-item:hover
.gallery-overlay {

    opacity: 1;
}


/* =====================================================
   OVERLAY TEXT
===================================================== */

.gallery-overlay div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.gallery-overlay span {

    font-size: 10px;

    opacity: 0.75;

    font-weight: 600;
}


.gallery-overlay h3 {

    margin: 0;

    font-size: 17px;

    font-weight: 800;
}


/* =====================================================
   ARROW
===================================================== */

.gallery-arrow {

    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    backdrop-filter:
        blur(8px);

    font-size: 13px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.gallery-item:hover
.gallery-arrow {

    background:
        var(--primary);

    transform:
        translateX(-3px);
}


/* =====================================================
   GALLERY CTA
===================================================== */

.gallery-cta {

    margin-top: 35px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-radius: 16px;

    background:
        #ffffff;

    border:
        1px solid #e5edef;
}


.gallery-cta div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.gallery-cta span {

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;
}


.gallery-cta strong {

    color: var(--dark);

    font-size: 15px;

    font-weight: 800;
}


.gallery-cta a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 22px;

    border-radius: 9px;

    background:
        var(--primary);

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.gallery-cta a:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(8, 127, 140, 0.2);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .gallery-grid {

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 230px;
    }


    .gallery-large {

        grid-column:
            span 2;

        grid-row:
            span 2;
    }


    .gallery-wide {

        grid-column:
            span 2;
    }


    .gallery-overlay {

        opacity: 1;

        padding: 18px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .gallery-section {

        padding: 75px 0;
    }


    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 260px;

        gap: 13px;
    }


    .gallery-large,
    .gallery-wide {

        grid-column:
            span 1;

        grid-row:
            span 1;
    }


    .gallery-overlay {

        padding: 18px;
    }


    .gallery-overlay h3 {

        font-size: 15px;
    }


    .gallery-cta {

        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }


    .gallery-cta div {

        align-items: center;
    }


    .gallery-cta a {

        justify-content: center;
    }

}
/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.contact-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.contact-heading h2 {
    margin-bottom: 16px;

    color: var(--dark);

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.4;

    font-weight: 900;
}


.contact-heading h2 span {
    display: block;

    color: var(--primary);
}


.contact-heading p {
    max-width: 600px;

    margin: auto;

    color: var(--text);

    font-size: 14px;

    line-height: 2;
}


/* =====================================================
   CONTACT WRAPPER
===================================================== */

.contact-wrapper {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 35px;

    align-items: stretch;
}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info {

    padding: 35px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #075e69,
            var(--primary)
        );

    color: #ffffff;

    box-shadow:
        0 25px 60px
        rgba(8, 127, 140, 0.18);
}


.contact-info-header {
    margin-bottom: 28px;
}


.contact-info-header > span {
    display: block;

    margin-bottom: 8px;

    color: rgba(255,255,255,0.65);

    font-size: 11px;

    font-weight: 700;
}


.contact-info-header h3 {
    margin-bottom: 12px;

    font-size: 25px;

    line-height: 1.4;

    font-weight: 900;
}


.contact-info-header p {
    color: rgba(255,255,255,0.75);

    font-size: 12px;

    line-height: 1.9;
}


/* =====================================================
   CONTACT CARDS
===================================================== */

.contact-card {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 13px;

    padding: 15px;

    border-radius: 13px;

    background:
        rgba(255,255,255,0.09);

    border:
        1px solid
        rgba(255,255,255,0.08);

    color: #ffffff;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


a.contact-card:hover {

    transform:
        translateX(-5px);

    background:
        rgba(255,255,255,0.15);
}


.contact-card-icon {

    flex-shrink: 0;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        rgba(255,255,255,0.12);

    font-size: 16px;
}


.contact-card > div:not(.contact-card-icon) {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.contact-card span {

    color: rgba(255,255,255,0.62);

    font-size: 10px;
}


.contact-card strong {

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;
}


.contact-arrow {

    margin-right: auto;

    font-size: 10px;

    opacity: 0.5;
}


.whatsapp-card .contact-card-icon {

    background:
        rgba(255,255,255,0.16);
}


/* =====================================================
   FORM BOX
===================================================== */

.contact-form-box {

    padding: 38px;

    border-radius: 22px;

    background: #f7fafb;

    border:
        1px solid #e5edef;
}


.form-header {
    margin-bottom: 28px;
}


.form-header span {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;
}


.form-header h3 {

    margin-top: 6px;

    color: var(--dark);

    font-size: 25px;

    font-weight: 900;
}


/* =====================================================
   FORM
===================================================== */

.contact-form {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 7px;
}


.form-group:nth-child(3),
.form-group:nth-child(4),
.contact-submit,
.form-note {

    grid-column:
        1 / -1;
}


.form-group label {

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;
}


.input-wrapper,
.textarea-wrapper {

    position: relative;
}


.input-wrapper > i,
.textarea-wrapper > i {

    position: absolute;

    right: 15px;

    top: 50%;

    transform:
        translateY(-50%);

    color: var(--primary);

    font-size: 13px;

    pointer-events: none;
}


.textarea-wrapper > i {

    top: 18px;

    transform: none;
}


.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {

    width: 100%;

    padding: 14px 43px 14px 14px;

    border:
        1px solid #dfe7e9;

    border-radius: 10px;

    outline: none;

    background: #ffffff;

    color: var(--dark);

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {

    border-color:
        var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(8,127,140,0.08);
}


.input-wrapper select {

    appearance: none;

    cursor: pointer;
}


.textarea-wrapper textarea {

    min-height: 120px;

    resize: vertical;

    line-height: 1.8;
}


/* =====================================================
   SUBMIT
===================================================== */

.contact-submit {

    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 10px;

    background:
        var(--primary);

    color: #ffffff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-submit:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(8,127,140,0.2);
}


.contact-submit i:first-child {

    font-size: 17px;
}


/* =====================================================
   FORM NOTE
===================================================== */

.form-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin: 0;

    color: #7a8a90;

    font-size: 9px;

    text-align: center;
}


.form-note i {

    color: var(--primary);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

    }


    .contact-info {

        max-width: 700px;

        width: 100%;

        margin: auto;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .contact-section {

        padding: 75px 0;
    }


    .contact-info,
    .contact-form-box {

        padding: 25px 18px;

        border-radius: 17px;
    }


    .contact-info-header h3,
    .form-header h3 {

        font-size: 21px;
    }


    .contact-form {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .form-group:nth-child(3),
    .form-group:nth-child(4),
    .contact-submit,
    .form-note {

        grid-column: auto;
    }

}
/* =====================================================
   FOOTER
===================================================== */

.footer {

    position: relative;

    padding: 75px 0 0;

    background:
        #071f25;

    color: #ffffff;

    overflow: hidden;
}


/* Decorative */

.footer::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -350px;
    right: -200px;

    border-radius: 50%;

    border: 80px solid
        rgba(255,255,255,0.025);

    pointer-events: none;
}


/* =====================================================
   FOOTER MAIN
===================================================== */

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr 0.8fr 1fr 1.1fr;

    gap: 55px;

    padding-bottom: 55px;
}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: #ffffff;
}


.footer-logo .logo-mark {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        var(--primary);

    color: #ffffff;

    font-size: 14px;

    font-weight: 900;
}


.footer-logo .logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;
}


.footer-logo .logo-text strong {

    font-size: 17px;
}


.footer-logo .logo-text span {

    margin-top: 3px;

    color: rgba(255,255,255,0.55);

    font-size: 9px;

    letter-spacing: 1px;
}


.footer-brand > p {

    max-width: 330px;

    margin-bottom: 22px;

    color: rgba(255,255,255,0.55);

    font-size: 12px;

    line-height: 2;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    gap: 9px;
}


.footer-social a {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,0.07);

    color: rgba(255,255,255,0.75);

    font-size: 13px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-social a:hover {

    background:
        var(--primary);

    color: #ffffff;

    transform:
        translateY(-3px);
}


/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column h3 {

    position: relative;

    margin-bottom: 22px;

    padding-bottom: 10px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;
}


.footer-column h3::after {

    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 30px;
    height: 2px;

    border-radius: 10px;

    background:
        var(--primary);
}


.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.footer-column li {

    list-style: none;
}


.footer-column li a {

    color:
        rgba(255,255,255,0.55);

    font-size: 11px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.footer-column li a:hover {

    color:
        #ffffff;

    transform:
        translateX(-4px);
}


/* =====================================================
   FOOTER CONTACT
===================================================== */

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 14px;
}


.footer-contact h3 {

    margin-bottom: 5px;
}


.footer-contact > a,
.footer-contact > div {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,0.58);

    font-size: 11px;
}


.footer-contact > a:hover {

    color: #ffffff;
}


.footer-contact i {

    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(255,255,255,0.07);

    color:
        var(--primary);

    font-size: 11px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,0.07);
}


.footer-bottom p {

    margin: 0;

    color:
        rgba(255,255,255,0.4);

    font-size: 9px;
}


.footer-bottom span {

    color:
        rgba(255,255,255,0.7);
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp {

    position: fixed;

    z-index: 999;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    border-radius: 50px;

    background:
        #25D366;

    color: #ffffff;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.18);

    font-size: 11px;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.floating-whatsapp i {

    font-size: 19px;
}


.floating-whatsapp:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.22);
}


/* Pulse */

.floating-whatsapp::before {

    content: "";

    position: absolute;

    inset: -5px;

    border-radius: inherit;

    border:
        1px solid
        rgba(37,211,102,0.35);

    animation:
        whatsappPulse 2s infinite;
}


@keyframes whatsappPulse {

    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.08);
        opacity: 0;
    }

    100% {
        transform: scale(1.08);
        opacity: 0;
    }

}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    position: fixed;

    z-index: 998;

    left: 25px;
    bottom: 85px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #e3eaec;

    border-radius: 10px;

    background:
        #ffffff;

    color:
        var(--primary);

    box-shadow:
        0 8px 25px
        rgba(16,42,67,0.12);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {

    background:
        var(--primary);

    color: #ffffff;

    border-color:
        var(--primary);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .footer {

        padding-top: 55px;
    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 35px;
    }


    .footer-brand > p {

        max-width: 100%;
    }


    .footer-bottom {

        flex-direction: column;

        justify-content: center;

        padding: 18px 0;

        text-align: center;
    }


    .floating-whatsapp {

        left: 15px;
        bottom: 15px;

        width: 48px;
        height: 48px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }


    .floating-whatsapp span {

        display: none;
    }


    .back-to-top {

        left: 15px;

        bottom: 75px;
    }

}
.footer-developer {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

.footer-developer a {
    color: #19c37d;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-developer a:hover {
    color: #25d366;
    text-decoration: underline;
}