/* =========================================================
   CREATIVE DEVELOPMENT GROUP
   COMPLETE WEBSITE STYLES
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #063b63;
    --navy-dark: #042c4a;
    --navy-deep: #021f35;
    --navy-light: #0b4b78;

    --red: #d90429;
    --red-dark: #b60323;
    --red-light: #ef233c;

    --white: #ffffff;
    --off-white: #f7f8fa;
    --light-grey: #eef1f4;

    --grey: #68717b;
    --dark: #111820;
    --border: #dfe4e8;

    --container: 1180px;

    --shadow:
        0 15px 40px rgba(0, 0, 0, 0.09);

    --shadow-large:
        0 25px 70px rgba(0, 0, 0, 0.15);

    --transition:
        0.3s ease;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 110px;

}


body {

    font-family: "Inter", sans-serif;

    color: var(--dark);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

}


img {

    display: block;

    max-width: 100%;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
select,
textarea {

    font: inherit;

}


button {

    cursor: pointer;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {

    font-family: "Montserrat", sans-serif;

    line-height: 1.1;

}


.section {

    padding: 105px 0;

}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--red);

    font-size: 0.73rem;

    font-weight: 800;

    letter-spacing: 0.16em;

}


.section-label::before {

    content: "";

    width: 28px;

    height: 3px;

    background: var(--red);

}


.section-heading {

    max-width: 750px;

    margin-bottom: 55px;

}


.section-heading.centered {

    margin-left: auto;
    margin-right: auto;

    text-align: center;

}


.section-heading.centered .section-label {

    justify-content: center;

}


.section-heading h2,
.contact-header h2 {

    color: var(--navy-dark);

    font-size: clamp(
        2.1rem,
        4vw,
        3.5rem
    );

    font-weight: 900;

    letter-spacing: -0.045em;

}


.section-heading h2 span,
.contact-header h2 span {

    color: var(--red);

}


.section-heading p,
.contact-header p {

    max-width: 650px;

    margin-top: 18px;

    color: var(--grey);

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border: 2px solid transparent;

    border-radius: 5px;

    font-size: 0.88rem;

    font-weight: 800;

    transition: var(--transition);

}


.btn-primary {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--red-light)
        );

}


.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(217, 4, 41, 0.25);

}


.btn-outline {

    color: var(--navy);

    border-color: var(--navy);

    background: transparent;

}


.btn-outline:hover {

    color: var(--white);

    background: var(--navy);

}


.btn-light-outline {

    color: var(--white);

    border-color:
        rgba(255, 255, 255, 0.6);

    background: transparent;

}


.btn-light-outline:hover {

    color: var(--navy);

    background: var(--white);

}


.btn-white-outline {

    color: var(--white);

    border-color:
        rgba(255, 255, 255, 0.7);

}


.btn-white-outline:hover {

    color: var(--navy);

    background: var(--white);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.06);

    transition: var(--transition);

}


.site-header.scrolled {

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.08);

}


.nav-container {

    min-height: 105px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* HEADER LOGO */

.logo {

    width: 270px;

    height: 96px;

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.company-logo {

    width: 100%;

    height: 92px;

    object-fit: contain;

    object-position: left center;

}


/* NAVIGATION */

.nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.nav a {

    position: relative;

    color: var(--navy-dark);

    font-size: 0.81rem;

    font-weight: 700;

    transition: var(--transition);

}


.nav a:hover {

    color: var(--red);

}


.nav-quote {

    padding: 13px 19px;

    border-radius: 4px;

    color: var(--white) !important;

    background: var(--red);

}


.nav-quote:hover {

    background: var(--red-dark);

}


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

.menu-toggle {

    display: none;

    width: 45px;

    height: 45px;

    border: 0;

    background: transparent;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

}


.menu-toggle span {

    width: 27px;

    height: 3px;

    background: var(--navy);

    transition: var(--transition);

}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(8px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-8px)
        rotate(-45deg);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            125deg,
            var(--navy-deep),
            var(--navy)
        );

}


.hero-background {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        radial-gradient(
            circle at 90% 15%,
            rgba(217, 4, 41, 0.26),
            transparent 35%
        ),

        radial-gradient(
            circle at 15% 90%,
            rgba(11, 75, 120, 0.7),
            transparent 45%
        );

}


.hero-background::before {

    content: "";

    position: absolute;

    right: -130px;

    top: -170px;

    width: 520px;

    height: 520px;

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    border-radius: 50%;

}


.hero-grid {

    position: relative;

    min-height: 690px;

    padding-top: 65px;

    padding-bottom: 65px;

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 70px;

    align-items: center;

}


.hero-content {

    max-width: 700px;

}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 0.17em;

}


.hero-eyebrow span {

    width: 34px;

    height: 3px;

    background: var(--red-light);

}


.hero h1 {

    max-width: 720px;

    font-size: clamp(
        3rem,
        6vw,
        5.5rem
    );

    font-weight: 900;

    letter-spacing: -0.055em;

}


.hero h1 span {

    display: block;

    color: var(--red-light);

}


.hero-description {

    max-width: 620px;

    margin-top: 27px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 1.05rem;

    line-height: 1.8;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;

}


.hero-details {

    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 45px;

}


.hero-details div {

    padding-right: 35px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.15);

}


.hero-details div:last-child {

    padding-right: 0;

    border-right: 0;

}


.hero-details span {

    display: block;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 0.61rem;

    font-weight: 800;

    letter-spacing: 0.12em;

}


.hero-details strong {

    display: block;

    margin-top: 4px;

    font-size: 0.88rem;

}


/* =========================================================
   HERO LOGO PANEL
========================================================= */

.hero-panel {

    padding: 37px;

    overflow: hidden;

    border-radius: 11px;

    color: var(--dark);

    background: var(--white);

    box-shadow: var(--shadow-large);

}


.hero-panel-logo-wrap {

    height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 27px;

    border-bottom:
        1px solid var(--border);

}


.hero-panel-logo {

    width: 100%;

    max-width: 340px;

    max-height: 160px;

    object-fit: contain;

}


.hero-panel-label {

    color: var(--red);

    font-size: 0.66rem;

    font-weight: 900;

    letter-spacing: 0.13em;

}


.hero-panel h2 {

    margin-top: 12px;

    color: var(--navy-dark);

    font-size: 1.9rem;

    font-weight: 900;

}


.hero-panel h2 span {

    color: var(--red);

}


.hero-panel p {

    margin-top: 16px;

    color: var(--grey);

    font-size: 0.9rem;

}


.hero-panel-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    color: var(--navy);

    font-size: 0.83rem;

    font-weight: 800;

}


.hero-panel-link span {

    color: var(--red);

    transition: var(--transition);

}


.hero-panel-link:hover span {

    transform: translateX(5px);

}


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

.about-section {

    background: var(--white);

}


.about-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 70px;

    align-items: start;

}


.about-content p {

    max-width: 670px;

    margin-bottom: 19px;

    color: var(--grey);

    line-height: 1.85;

}


.about-content .lead {

    color: var(--dark);

    font-size: 1.12rem;

    font-weight: 600;

}


.about-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

}


.about-panel {

    padding: 38px;

    border-radius: 8px;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-dark)
        );

    box-shadow: var(--shadow);

}


.about-panel-label {

    color: var(--red-light);

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 0.15em;

}


.about-panel h3 {

    max-width: 410px;

    margin-top: 14px;

    font-size: 2rem;

}


.about-values {

    margin-top: 30px;

}


.about-values div {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.12);

}


.about-values span {

    color: var(--red-light);

    font-size: 0.66rem;

    font-weight: 900;

}


.about-values p {

    margin: 0;

    color:
        rgba(255, 255, 255, 0.77);

    font-size: 0.86rem;

}


/* =========================================================
   SERVICES WITH PHOTO THUMBNAILS
========================================================= */

.services-section {

    background: var(--off-white);

}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


.service-card {

    overflow: hidden;

    display: flex;

    flex-direction: column;

    min-height: 425px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background: var(--white);

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(217, 4, 41, 0.22);

    box-shadow: var(--shadow);

}


/* PHOTO */

.service-image {

    position: relative;

    width: 100%;

    height: 195px;

    overflow: hidden;

    background: var(--light-grey);

}


.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(4, 44, 74, 0.55),
            transparent 65%
        );

}


.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.service-card:hover .service-image img {

    transform: scale(1.07);

}


.service-number {

    position: absolute;

    left: 18px;

    bottom: 16px;

    z-index: 2;

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 4px;

    color: var(--white);

    background: var(--red);

    font-size: 0.7rem;

    font-weight: 900;

}


/* CARD CONTENT */

.service-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 25px;

}


.service-content h3 {

    color: var(--navy-dark);

    font-size: 1.13rem;

}


.service-content p {

    margin-top: 13px;

    color: var(--grey);

    font-size: 0.84rem;

    line-height: 1.7;

}


.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    padding-top: 22px;

    color: var(--navy);

    font-size: 0.78rem;

    font-weight: 800;

}


.service-link span {

    color: var(--red);

    transition: var(--transition);

}


.service-link:hover span {

    transform: translateX(5px);

}


/* CUSTOM SERVICE CARD */

.service-card-contact {

    min-height: 425px;

    border: 0;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-dark)
        );

}


.custom-service-content {

    min-height: 100%;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 35px;

}


.custom-service-content > span {

    color: var(--red-light);

    font-size: 0.66rem;

    font-weight: 900;

    letter-spacing: 0.13em;

}


.custom-service-content h3 {

    margin-top: 15px;

    font-size: 2rem;

}


.custom-service-content p {

    margin: 16px 0 27px;

    color:
        rgba(255, 255, 255, 0.7);

}


/* =========================================================
   WHY US
========================================================= */

.why-section {

    background: var(--white);

}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}


.why-item {

    padding: 30px 20px;

    border-top:
        3px solid var(--navy);

}


.why-item > span {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 4px;

    color: var(--white);

    background: var(--red);

    font-size: 0.68rem;

    font-weight: 900;

}


.why-item h3 {

    margin-top: 22px;

    color: var(--navy-dark);

    font-size: 1.08rem;

}


.why-item p {

    margin-top: 11px;

    color: var(--grey);

    font-size: 0.83rem;

}


/* =========================================================
   FEEDBACK
========================================================= */

.feedback-section {

    background: var(--off-white);

}


.feedback-layout {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;

}


.feedback-heading h2 {

    color: var(--navy-dark);

    font-size: clamp(
        2rem,
        4vw,
        3.3rem
    );

    font-weight: 900;

}


.feedback-heading h2 span {

    color: var(--red);

}


.feedback-heading p {

    max-width: 520px;

    margin-top: 18px;

    color: var(--grey);

}


.feedback-card {

    padding: 38px;

    border-left:
        4px solid var(--red);

    background: var(--white);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.04);

}


.feedback-card h3 {

    color: var(--navy-dark);

    font-size: 1.35rem;

}


.feedback-card p {

    margin: 15px 0 25px;

    color: var(--grey);

}


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

.contact-section {

    background: var(--white);

}


.contact-header {

    max-width: 680px;

    margin-bottom: 55px;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 70px;

}


/* LEFT CONTACT */

.contact-business {

    padding-bottom: 28px;

    margin-bottom: 15px;

    border-bottom:
        1px solid var(--border);

}


.contact-logo {

    width: 310px;

    max-height: 155px;

    object-fit: contain;

    object-position: left center;

}


.contact-business p {

    margin-top: 14px;

    color: var(--navy);

    font-weight: 700;

}


.contact-item {

    padding: 20px 0;

    border-bottom:
        1px solid var(--border);

}


.contact-item span {

    display: block;

    color: var(--grey);

    font-size: 0.65rem;

    font-weight: 900;

    letter-spacing: 0.12em;

}


.contact-item a,
.contact-item strong {

    display: block;

    margin-top: 5px;

    color: var(--navy);

    font-size: 0.94rem;

}


/* =========================================================
   FORM
========================================================= */

.contact-form {

    padding: 38px;

    border:
        1px solid var(--border);

    border-radius: 8px;

    background: var(--off-white);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.04);

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 16px;

}


.contact-form label {

    display: block;

    margin-bottom: 18px;

    color: var(--navy-dark);

    font-size: 0.78rem;

    font-weight: 800;

}


.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    margin-top: 7px;

    padding: 14px 15px;

    outline: none;

    border:
        1px solid #d7dce0;

    border-radius: 4px;

    color: var(--dark);

    background: var(--white);

    transition: var(--transition);

}


.contact-form textarea {

    min-height: 140px;

    resize: vertical;

}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    border-color: var(--navy);

    box-shadow:
        0 0 0 3px
        rgba(6, 59, 99, 0.08);

}


.form-submit {

    width: 100%;

}


.form-note {

    margin-top: 13px;

    color: var(--grey);

    text-align: center;

    font-size: 0.7rem;

}


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

.footer {

    padding: 60px 0 25px;

    color: var(--navy-dark);

    background: var(--white);

    border-top:
        1px solid var(--border);

}


.footer-main {

    display: grid;

    grid-template-columns:
        1.6fr 1fr 1fr;

    gap: 60px;

    align-items: start;

    padding-bottom: 45px;

}


.footer-brand {

    display: flex;

    align-items: flex-start;

}


.footer-logo {

    width: 330px;

    max-height: 170px;

    object-fit: contain;

    object-position: left center;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;

}


.footer-column h4 {

    margin-bottom: 5px;

    color: var(--red);

    font-size: 0.68rem;

    letter-spacing: 0.14em;

}


.footer-column a,
.footer-column span {

    color: var(--navy);

    font-size: 0.8rem;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--red);

    transform: translateX(3px);

}


.footer-bottom {

    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 15px;

    border-top:
        1px solid var(--border);

    color: var(--grey);

    font-size: 0.69rem;

}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 1200;

    min-height: 52px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        7px 17px 7px 7px;

    border-radius: 50px;

    color: var(--white);

    background: #25d366;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.2);

    font-size: 0.78rem;

    font-weight: 800;

    transition: var(--transition);

}


.floating-whatsapp:hover {

    transform: translateY(-4px);

    box-shadow:
        0 14px 35px
        rgba(0, 0, 0, 0.25);

}


.wa-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.2);

    font-size: 0.67rem;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 27px;

    bottom: 92px;

    z-index: 1100;

    width: 43px;

    height: 43px;

    opacity: 0;

    visibility: hidden;

    border: 0;

    border-radius: 4px;

    color: var(--white);

    background: var(--navy);

    transform: translateY(10px);

    transition: var(--transition);

    box-shadow: var(--shadow);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.back-to-top:hover {

    background: var(--red);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav {

        gap: 18px;

    }


    .hero-grid {

        gap: 40px;

    }


    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


}


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

@media (max-width: 850px) {

    html {

        scroll-padding-top: 90px;

    }


    .nav-container {

        min-height: 90px;

    }


    .logo {

        width: 215px;

        height: 82px;

    }


    .company-logo {

        height: 78px;

    }


    .menu-toggle {

        display: flex;

        z-index: 1002;

    }


    .nav {

        position: absolute;

        top: 90px;

        left: 0;

        width: 100%;

        max-height: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 0 25px;

        overflow: hidden;

        opacity: 0;

        background: var(--white);

        box-shadow:
            0 18px 35px
            rgba(0, 0, 0, 0.12);

        transition:
            max-height 0.4s ease,
            opacity 0.25s ease,
            padding 0.3s ease;

    }


    .nav.active {

        max-height: 550px;

        padding-top: 15px;

        padding-bottom: 25px;

        opacity: 1;

    }


    .nav a {

        padding: 14px 0;

        border-bottom:
            1px solid var(--border);

    }


    .nav-quote {

        margin-top: 12px;

        padding:
            15px 18px !important;

        text-align: center;

        border-bottom:
            0 !important;

    }


    .hero-grid {

        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 75px;

        padding-bottom: 75px;

    }


    .hero-panel {

        max-width: 650px;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .feedback-layout {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .footer-main {

        grid-template-columns:
            1.4fr 1fr 1fr;

    }

}


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

@media (max-width: 650px) {

    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .section {

        padding: 75px 0;

    }


    .hero-grid {

        padding-top: 60px;

        padding-bottom: 60px;

    }


    .hero h1 {

        font-size:
            clamp(
                2.65rem,
                13vw,
                4rem
            );

    }


    .hero-description {

        font-size: 0.98rem;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-details {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 20px;

    }


    .hero-details div {

        padding-right: 0;

        border-right: 0;

    }


    .hero-panel {

        padding: 25px;

    }


    .hero-panel-logo-wrap {

        height: 150px;

    }


    .hero-panel-logo {

        max-height: 135px;

    }


    .service-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: auto;

    }


    .service-image {

        height: 220px;

    }


    .service-content {

        min-height: 220px;

    }


    .why-grid {

        grid-template-columns: 1fr;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-form {

        padding: 25px 20px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-logo {

        width: 290px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 7px;

    }


    .floating-whatsapp {

        right: 15px;

        bottom: 15px;

        padding-right: 7px;

    }


    .wa-text {

        display: none;

    }


    .back-to-top {

        right: 16px;

        bottom: 76px;

    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .logo {

        width: 180px;

    }


    .company-logo {

        height: 72px;

    }


    .hero-details {

        grid-template-columns: 1fr;

    }


}
