@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* ================================
   CLYMO AIR - MAIN COLORS
================================ */

:root {
    --dark: #11283d;
    --dark-deep: #0a1c2b;
    --dark-light: #193952;

    --blue: #1e88e5;
    --blue-light: #65c1ff;

    --orange: #ff6a00;
    --orange-dark: #e85f00;

    --white: #ffffff;
    --gray: #c1ccd6;
    --text-gray: #9eb0bf;

    --border: rgba(255, 255, 255, 0.11);
}


/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--dark-deep);
}

body {
    font-family: "Inter", sans-serif;
    background: var(--dark-deep);
    color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}


/* ================================
   CONTINUOUS WEBSITE BACKGROUND
================================ */

main {
    position: relative;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(30, 136, 229, 0.30),
            transparent 26%
        ),
        radial-gradient(
            circle at 92% 34%,
            rgba(255, 106, 0, 0.16),
            transparent 25%
        ),
        radial-gradient(
            circle at 12% 62%,
            rgba(30, 136, 229, 0.20),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 86%,
            rgba(255, 106, 0, 0.14),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #0c2032 0%,
            #15344d 45%,
            #102a40 75%,
            #0c2133 100%
        );
}


/* Grid pattern across entire site */

main::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -2;

    pointer-events: none;

    opacity: 0.07;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.16) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.16) 1px,
            transparent 1px
        );

    background-size: 55px 55px;
}


/* Large decorative circle */

main::after {
    content: "";

    width: 650px;
    height: 650px;

    position: absolute;
    top: 900px;
    right: -330px;
    z-index: -1;

    border-radius: 50%;

    border: 1px solid rgba(101, 193, 255, 0.18);

    box-shadow:
        0 0 0 70px rgba(101, 193, 255, 0.025),
        0 0 0 140px rgba(101, 193, 255, 0.015),
        0 0 130px rgba(30, 136, 229, 0.15);

    pointer-events: none;
}


/* IMPORTANT: sections use same background */

.hero,
.services,
.why-us,
.about,
.contact {
    position: relative;
    background: transparent !important;

    border: 0 !important;
    outline: 0 !important;

    margin: 0;
}


/* ================================
   NAVBAR
================================ */

.navbar {
    width: 100%;
    min-height: 84px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(9, 27, 42, 0.86);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: 0.3s;
}

.navbar.scrolled {
    min-height: 72px;

    background: rgba(9, 27, 42, 0.95);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.22);
}


/* Logo */

.logo {
    width: 155px;
    display: block;
}

.logo img {
    width: 100%;
    height: auto;
}


/* Desktop Navigation */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    position: relative;

    color: var(--white);

    font-size: 15px;
    font-weight: 500;

    transition: 0.3s;
}

.desktop-nav a::after {
    content: "";

    width: 0;
    height: 2px;

    position: absolute;
    left: 0;
    bottom: -8px;

    border-radius: 20px;

    background: var(--orange);

    transition: 0.3s;
}

.desktop-nav a:hover {
    color: var(--blue-light);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* ================================
   BUTTONS
================================ */

.quote-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border: none;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #ff7a18,
            var(--orange)
        );

    color: var(--white);

    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(255, 106, 0, 0.25);

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.quote-button:hover,
.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(255, 106, 0, 0.35);
}


.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border:
        1px solid rgba(255, 255, 255, 0.45);

    border-radius: 10px;

    color: var(--white);

    font-weight: 700;

    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(8px);

    transition: 0.3s;
}

.secondary-button:hover {
    transform: translateY(-3px);

    color: var(--blue-light);

    border-color: var(--blue-light);

    background:
        rgba(101, 193, 255, 0.09);
}


/* ================================
   MOBILE MENU
================================ */

.menu-button {
    display: none;

    border: none;
    background: transparent;

    color: var(--white);

    font-size: 28px;

    cursor: pointer;
}

.mobile-nav {
    display: none;
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 100vh;

    padding: 160px 7% 100px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* Extra Hero Blue Light */

.hero::before {
    content: "";

    width: 700px;
    height: 700px;

    position: absolute;

    left: -350px;
    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(30, 136, 229, 0.22),
            transparent 68%
        );

    pointer-events: none;
}


.hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


/* Blue circle */

.hero-decoration-blue {
    width: 470px;
    height: 470px;

    top: 20%;
    right: -130px;

    border:
        1px solid rgba(101, 193, 255, 0.30);

    box-shadow:
        0 0 0 55px rgba(101, 193, 255, 0.025),
        0 0 0 110px rgba(101, 193, 255, 0.015),
        0 0 110px rgba(30, 136, 229, 0.17);
}


/* Orange circle */

.hero-decoration-orange {
    width: 280px;
    height: 280px;

    top: 34%;
    right: 25px;

    border:
        1px solid rgba(255, 106, 0, 0.35);

    box-shadow:
        0 0 80px rgba(255, 106, 0, 0.13);
}


.hero-content {
    max-width: 790px;

    position: relative;
    z-index: 3;
}


.hero-label,
.section-label,
.section-heading > p {
    color: var(--blue-light);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}


.hero h1 {
    max-width: 800px;

    margin: 20px 0 25px;

    color: var(--white);

    font-size: clamp(50px, 7vw, 92px);

    line-height: 0.98;

    letter-spacing: -4px;
}


.hero h1 span {
    display: block;

    color: var(--orange);
}


.hero-description {
    max-width: 650px;

    margin-bottom: 35px;

    color: var(--gray);

    font-size: 18px;

    line-height: 1.8;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;
}


.hero-contact {
    margin-top: 35px;

    display: flex;
    flex-wrap: wrap;

    gap: 25px;
}


.hero-contact a,
.hero-contact span {
    color: var(--gray);

    font-size: 14px;
}


.hero-contact a:hover {
    color: var(--blue-light);
}


/* ================================
   GENERAL SECTIONS
================================ */

.section-padding {
    padding: 110px 7%;

    margin: 0;
}


.section-heading {
    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-heading h2 {
    margin-top: 12px;

    color: var(--white);

    font-size: clamp(34px, 5vw, 52px);

    letter-spacing: -2px;
}


.heading-line {
    display: block;

    width: 65px;
    height: 4px;

    margin: 20px auto;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--blue-light),
            var(--orange)
        );
}


.section-introduction {
    color: var(--gray);

    font-size: 16px;

    line-height: 1.8;
}


/* ================================
   SERVICES
================================ */

.service-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.service-card {
    min-height: 285px;

    padding: 35px;

    border:
        1px solid rgba(101, 193, 255, 0.16);

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(31, 68, 96, 0.90),
            rgba(17, 45, 67, 0.94)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(12px);

    transition:
        transform 0.35s,
        border-color 0.35s,
        box-shadow 0.35s;
}


.service-card:nth-child(even) {
    border-color:
        rgba(255, 106, 0, 0.18);
}


.service-card:hover {
    transform: translateY(-9px);

    border-color: var(--blue-light);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.28),
        0 0 35px rgba(30, 136, 229, 0.13);
}


.service-card:nth-child(even):hover {
    border-color: var(--orange);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.28),
        0 0 35px rgba(255, 106, 0, 0.12);
}


.service-icon {
    width: 64px;
    height: 64px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        rgba(30, 136, 229, 0.15);

    border:
        1px solid rgba(101, 193, 255, 0.20);

    font-size: 29px;
}


.service-card:nth-child(even) .service-icon {
    background:
        rgba(255, 106, 0, 0.12);

    border-color:
        rgba(255, 106, 0, 0.20);
}


.service-card h3 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 21px;
}


.service-card p {
    color: var(--gray);

    line-height: 1.75;
}


/* ================================
   WHY CLYMO AIR
================================ */

.why-us {
    overflow: hidden;
}


.why-us::after {
    content: "";

    width: 500px;
    height: 500px;

    position: absolute;

    left: -270px;
    top: 10%;

    border-radius: 50%;

    border:
        1px solid rgba(255, 106, 0, 0.18);

    box-shadow:
        0 0 0 55px rgba(255, 106, 0, 0.02),
        0 0 90px rgba(255, 106, 0, 0.10);

    pointer-events: none;
}


.light-heading h2 {
    color: var(--white);
}


.feature-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


.feature-card {
    padding: 30px;

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(31, 68, 96, 0.82),
            rgba(15, 42, 64, 0.90)
        );

    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.20);

    backdrop-filter: blur(12px);

    transition: 0.35s;
}


.feature-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(101, 193, 255, 0.48);

    background:
        linear-gradient(
            145deg,
            rgba(36, 78, 108, 0.90),
            rgba(17, 48, 72, 0.94)
        );
}


.feature-number {
    margin-bottom: 28px;

    color: var(--orange);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 2px;
}


.feature-card h3 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 20px;
}


.feature-card p {
    color: var(--gray);

    line-height: 1.7;
}


/* ================================
   ABOUT
================================ */

.about-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 70px;
}


.about-content h2 {
    margin: 15px 0 25px;

    color: var(--white);

    font-size: clamp(34px, 5vw, 52px);

    letter-spacing: -2px;
}


.about-content > p:not(.section-label) {
    margin-bottom: 18px;

    color: var(--gray);

    font-size: 16px;

    line-height: 1.8;
}


.about-features {
    margin-top: 35px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.about-features div {
    padding: 16px;

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: 11px;

    background:
        rgba(27, 62, 88, 0.82);

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

    backdrop-filter: blur(10px);
}


.about-features span {
    margin-right: 7px;

    color: var(--orange);
}


.about-visual {
    min-height: 430px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(30, 136, 229, 0.42),
            transparent 42%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255, 106, 0, 0.32),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #153a57,
            #102a40
        );

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.25);
}


.about-visual::before {
    content: "";

    width: 300px;
    height: 300px;

    position: absolute;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    box-shadow:
        0 0 0 50px rgba(255, 255, 255, 0.015);
}


.about-logo-box {
    width: 100%;

    position: relative;

    z-index: 2;

    text-align: center;
}


.about-logo-box img {
    width: 320px;

    margin: auto;
}


.about-logo-box p {
    margin-top: 20px;

    color: var(--gray);

    font-size: 14px;

    letter-spacing: 1px;
}


/* ================================
   CONTACT
================================ */

.contact-container {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 24px;

    background: transparent;

    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.25);
}


.contact-information,
.contact-action {
    padding: 50px;
}


.contact-information {
    background:
        linear-gradient(
            145deg,
            rgba(31, 68, 96, 0.96),
            rgba(17, 45, 67, 0.97)
        );
}


.contact-information h3,
.contact-action h3 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 30px;
}


.contact-information > p,
.contact-action > p:not(.section-label) {
    margin-bottom: 30px;

    color: var(--gray);

    line-height: 1.7;
}


.contact-item {
    margin-top: 15px;

    padding: 15px;

    display: flex;
    align-items: center;

    gap: 15px;

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: 12px;

    background:
        rgba(20, 50, 74, 0.82);

    color: var(--white);

    transition: 0.3s;
}


a.contact-item:hover {
    transform: translateX(5px);

    border-color: var(--blue-light);

    background:
        rgba(28, 67, 97, 0.90);
}


.contact-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        rgba(30, 136, 229, 0.18);

    border:
        1px solid rgba(101, 193, 255, 0.17);
}


.contact-item span {
    display: block;

    margin-bottom: 4px;

    color: var(--gray);

    font-size: 12px;
}


.contact-item strong {
    color: var(--white);

    font-size: 15px;
}


.contact-action {
    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(255, 106, 0, 0.30),
            transparent 42%
        ),
        radial-gradient(
            circle at 0 100%,
            rgba(30, 136, 229, 0.22),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #173b58,
            #102a40
        );
}


.contact-action h3 {
    margin-top: 13px;
}


.contact-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.dark-secondary {
    color: var(--white);
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 75px 7% 25px;

    background:
        linear-gradient(
            135deg,
            #091a28,
            #0d2538
        );

    border-top:
        1px solid rgba(255, 255, 255, 0.07);
}


.footer-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.4fr 0.7fr 1fr;

    gap: 60px;
}


.footer-brand img {
    width: 180px;
}


.footer-brand p {
    max-width: 420px;

    margin-top: 20px;

    color: var(--gray);

    line-height: 1.7;
}


.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.footer-links h3,
.footer-contact h3 {
    margin-bottom: 10px;

    color: var(--white);
}


.footer-links a,
.footer-contact a,
.footer-contact p {
    color: var(--gray);

    font-size: 14px;

    transition: 0.3s;
}


.footer-links a:hover,
.footer-contact a:hover {
    color: var(--blue-light);
}


.footer-bottom {
    max-width: 1250px;

    margin: 55px auto 0;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}


.footer-bottom p {
    color: #93a6b5;

    font-size: 13px;
}


/* ================================
   FLOATING BUTTONS
================================ */

.floating-buttons {
    position: fixed;

    right: 22px;
    bottom: 25px;

    z-index: 900;

    display: flex;

    flex-direction: column;

    gap: 11px;
}


.floating-button {
    width: 51px;
    height: 51px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    font-size: 21px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.25);

    transition: 0.3s;
}


.floating-button:hover {
    transform: scale(1.1);
}


.call-floating {
    background:
        linear-gradient(
            135deg,
            #ff7a18,
            var(--orange)
        );
}


.instagram-floating {
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-light)
        );
}


/* ================================
   BACK TO TOP
================================ */

.back-to-top {
    width: 46px;
    height: 46px;

    position: fixed;

    right: 85px;
    bottom: 27px;

    z-index: 900;

    display: none;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #173a55;

    color: var(--white);

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.20);
}


.back-to-top.visible {
    display: flex;
}


/* ================================
   SCROLL ANIMATION
================================ */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* ================================
   TABLET
================================ */

@media (max-width: 1000px) {

    .desktop-nav,
    .navbar > .quote-button {
        display: none;
    }


    .menu-button {
        display: block;
    }


    .mobile-nav {
        width: 100%;

        padding: 25px 7%;

        position: fixed;

        top: 72px;
        left: 0;

        z-index: 999;

        flex-direction: column;

        gap: 5px;

        background:
            rgba(9, 27, 42, 0.98);

        backdrop-filter: blur(18px);

        transform: translateY(-130%);

        transition: 0.35s;
    }


    .mobile-nav.open {
        display: flex;

        transform: translateY(0);
    }


    .mobile-nav a {
        padding: 14px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);

        color: var(--white);

        font-weight: 600;
    }


    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .about-container {
        grid-template-columns: 1fr;
    }


    .contact-container {
        grid-template-columns: 1fr;
    }


    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    main::before {
        background-size: 38px 38px;
    }


    main::after {
        width: 350px;
        height: 350px;

        right: -230px;
    }


    .navbar {
        min-height: 70px;

        padding: 0 5%;
    }


    .logo {
        width: 125px;
    }


    .mobile-nav {
        top: 70px;

        padding-left: 5%;
        padding-right: 5%;
    }


    .hero {
        min-height: auto;

        padding:
            140px 5%
            90px;
    }


    .hero::before {
        width: 450px;
        height: 450px;

        left: -300px;
    }


    .hero-decoration-blue {
        width: 320px;
        height: 320px;

        right: -220px;
    }


    .hero-decoration-orange {
        width: 190px;
        height: 190px;

        right: -80px;
    }


    .hero h1 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
    }


    .hero-contact {
        flex-direction: column;

        gap: 12px;
    }


    .section-padding {
        padding: 85px 5%;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .service-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: auto;
    }


    .about-features {
        grid-template-columns: 1fr;
    }


    .about-visual {
        min-height: 320px;

        padding: 25px;
    }


    .about-logo-box img {
        width: 240px;
    }


    .contact-information,
    .contact-action {
        padding: 35px 25px;
    }


    .contact-buttons {
        flex-direction: column;
    }


    .contact-buttons a {
        width: 100%;
    }


    .footer-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .footer-bottom {
        flex-direction: column;

        text-align: center;
    }


    .floating-buttons {
        right: 15px;

        bottom: 18px;
    }


    .floating-button {
        width: 47px;
        height: 47px;
    }


    .back-to-top {
        right: 73px;

        bottom: 19px;
    }
}
/* =========================================
   FINAL CLYMO AIR FIXES
========================================= */


/* THINNER TOP NAVBAR */

.navbar {
    height: 78px;
    min-height: 78px;
}

.logo {
    width: 120px;
    height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: auto;
    height: 74px;
    max-width: 120px;

    object-fit: contain;
}

.navbar.scrolled {
    height: 68px;
    min-height: 68px;
}


/* =========================================
   INSTAGRAM CONTACT ICON
========================================= */

.instagram-contact-icon {
    padding: 4px;

    background: transparent;
    border: none;
}

.instagram-contact-icon svg {
    width: 36px;
    height: 36px;

    display: block;
}


/* =========================================
   FLOATING INSTAGRAM BUTTON
========================================= */

.instagram-floating {
    padding: 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%
        );
}

.instagram-floating svg {
    width: 27px;
    height: 27px;

    display: block;
}


/* =========================================
   MOBILE FIX
========================================= */

@media (max-width: 650px) {

    .navbar {
        height: 62px;
        min-height: 62px;
    }

    .navbar.scrolled {
        height: 58px;
        min-height: 58px;
    }

    .logo {
        width: 95px;
        height: 58px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        width: auto;
        height: 58px;
        max-width: 95px;

        object-fit: contain;
    }

    .mobile-nav {
        top: 62px;
    }
}
/* Move Clymo Air logo slightly lower inside the ring */

.about-logo-box img {
    position: relative;
    top: 22px;

    animation: clymoLogoFloat 4s ease-in-out infinite;

    filter:
        drop-shadow(0 12px 25px rgba(0, 0, 0, 0.30));
}
/* =========================================
   CLYMO AIR - FIRE / ICE ANIMATION
========================================= */

.about-visual {
    position: relative;
    isolation: isolate;
}


/* Rotating fire + ice energy ring */

.about-visual::after {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,

            transparent 0deg,

            rgba(30, 136, 229, 0.10) 25deg,
            rgba(101, 193, 255, 0.90) 70deg,
            rgba(30, 136, 229, 0.25) 120deg,

            transparent 165deg,

            rgba(255, 106, 0, 0.15) 200deg,
            rgba(255, 106, 0, 0.95) 250deg,
            rgba(255, 180, 70, 0.65) 305deg,

            transparent 360deg
        );

    filter: blur(8px);

    opacity: 0.85;

    animation:
        clymoEnergyRotate 9s linear infinite;

    z-index: 0;

    pointer-events: none;
}


/* Makes ring hollow */

.about-visual::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(15, 42, 64, 0.85) 55%,
            transparent 56%
        );

    border:
        1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 0 45px rgba(30, 136, 229, 0.15),
        0 0 70px rgba(255, 106, 0, 0.10);

    z-index: 1;

    animation:
        clymoGlowPulse 3.5s ease-in-out infinite;
}


/* Keep logo above animation */

.about-logo-box {
    position: relative;

    z-index: 3;
}


/* Very small floating movement */

.about-logo-box img {
    animation:
        clymoLogoFloat 4s ease-in-out infinite;

    filter:
        drop-shadow(
            0 12px 25px rgba(0, 0, 0, 0.30)
        );
}


/* Rotation */

@keyframes clymoEnergyRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* Glow breathing */

@keyframes clymoGlowPulse {

    0%,
    100% {
        box-shadow:
            0 0 35px rgba(30, 136, 229, 0.12),
            0 0 55px rgba(255, 106, 0, 0.08);
    }

    50% {
        box-shadow:
            0 0 65px rgba(30, 136, 229, 0.28),
            0 0 85px rgba(255, 106, 0, 0.20);
    }

}


/* Logo floating */

@keyframes clymoLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* Mobile */

@media (max-width: 650px) {

    .about-visual::after {
        width: 285px;
        height: 285px;
    }

    .about-visual::before {
        width: 245px;
        height: 245px;
    }

}
/* Move Clymo Air logo slightly lower inside the ring */

.about-logo-box img {
    position: relative;
    top: 40px;

    animation: clymoLogoFloat 4s ease-in-out infinite;

    filter:
        drop-shadow(0 12px 25px rgba(0, 0, 0, 0.30));
}
/* =========================================
   HERO EMAIL BUTTON
========================================= */

.email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1e88e5,
            #65c1ff
        );

    color: #ffffff;

    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(30, 136, 229, 0.22);

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.email-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 35px rgba(30, 136, 229, 0.35);
}
/* =========================================
   ALL GTA BUTTON
========================================= */

.service-area-button {
    padding: 14px 24px;

    border: 1px solid rgba(101, 193, 255, 0.45);
    border-radius: 10px;

    background: rgba(101, 193, 255, 0.08);

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.service-area-button:hover {
    transform: translateY(-3px);

    border-color: #65c1ff;

    background: rgba(101, 193, 255, 0.16);

    box-shadow:
        0 12px 30px rgba(30, 136, 229, 0.20);
}


/* =========================================
   SERVICE AREA POPUP
========================================= */

.service-area-popup {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(4, 15, 25, 0.80);

    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
}

.service-area-popup.active {
    opacity: 1;
    visibility: visible;
}

.service-area-popup-content {
    width: min(720px, 100%);
    max-height: 82vh;

    position: relative;

    padding: 40px;

    overflow-y: auto;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at top right,
            rgba(101, 193, 255, 0.15),
            transparent 35%
        ),
        #102d45;

    border:
        1px solid rgba(101, 193, 255, 0.20);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);

    transform:
        translateY(25px)
        scale(0.96);

    transition: 0.3s;
}

.service-area-popup.active
.service-area-popup-content {
    transform:
        translateY(0)
        scale(1);
}

.service-area-close {
    position: absolute;

    top: 14px;
    right: 18px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 32px;

    cursor: pointer;
}

.service-area-label {
    color: #65c1ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.service-area-popup h3 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: 27px;
}

.service-area-popup h4 {
    margin:
        24px 0
        12px;

    color: #ff8a32;

    font-size: 16px;
}

.service-area-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.service-area-grid span {
    padding: 12px 14px;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.07);

    color: #ffffff;
}

.service-area-note {
    margin-top: 26px;

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 13px;
}


/* MOBILE */

@media (max-width: 650px) {

    .service-area-button {
        width: 100%;
    }

    .service-area-popup-content {
        padding:
            38px 22px
            25px;
    }

    .service-area-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   HERO BUTTONS - FINAL GLASS STYLE
========================================= */

.hero-buttons .primary-button,
.hero-buttons .quote-button,
.hero-buttons .email-button,
.hero-buttons .secondary-button,
.hero-buttons .service-area-button {
    background: rgba(255, 255, 255, 0.035) !important;
    background-image: none !important;

    color: #ffffff !important;

    border-radius: 10px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* 1 — FREE QUOTE — ORANGE */

.hero-buttons .primary-button,
.hero-buttons .quote-button {
    border: 1px solid rgba(255, 106, 0, 0.75) !important;

    box-shadow:
        0 0 10px rgba(255, 106, 0, 0.10),
        0 0 22px rgba(255, 106, 0, 0.08) !important;
}


/* 2 — EMAIL US — BLUE */

.hero-buttons .email-button {
    border: 1px solid rgba(101, 193, 255, 0.75) !important;

    box-shadow:
        0 0 10px rgba(101, 193, 255, 0.10),
        0 0 22px rgba(30, 136, 229, 0.08) !important;
}


/* 3 — EXPLORE SERVICES — ORANGE */

.hero-buttons .secondary-button {
    border: 1px solid rgba(255, 106, 0, 0.75) !important;

    box-shadow:
        0 0 10px rgba(255, 106, 0, 0.08),
        0 0 22px rgba(255, 106, 0, 0.06) !important;
}


/* 4 — SERVING ALL GTA — BLUE */

.hero-buttons .service-area-button {
    border: 1px solid rgba(101, 193, 255, 0.75) !important;

    box-shadow:
        0 0 10px rgba(101, 193, 255, 0.08),
        0 0 22px rgba(30, 136, 229, 0.06) !important;
}


/* ORANGE HOVER */

.hero-buttons .primary-button:hover,
.hero-buttons .quote-button:hover,
.hero-buttons .secondary-button:hover {
    transform: translateY(-3px);

    background: rgba(255, 106, 0, 0.07) !important;
    background-image: none !important;

    border-color: #ff7a18 !important;

    box-shadow:
        0 0 12px rgba(255, 106, 0, 0.30),
        0 0 30px rgba(255, 106, 0, 0.18) !important;
}


/* BLUE HOVER */

.hero-buttons .email-button:hover,
.hero-buttons .service-area-button:hover {
    transform: translateY(-3px);

    background: rgba(101, 193, 255, 0.07) !important;
    background-image: none !important;

    border-color: #65c1ff !important;

    box-shadow:
        0 0 12px rgba(101, 193, 255, 0.30),
        0 0 30px rgba(30, 136, 229, 0.18) !important;
}
/* =========================================
   CLICKABLE SERVICE CARDS
========================================= */

.service-card {
    cursor: pointer;
}

.service-more {
    display: inline-block;
    margin-top: 20px;

    color: #65c1ff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.service-card:nth-child(even) .service-more {
    color: #ff8a32;
}

.service-card:hover .service-more {
    transform: translateX(5px);
}


/* =========================================
   SERVICE POPUP
========================================= */

.service-popup {
    position: fixed;
    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(4, 15, 25, 0.82);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
}

.service-popup.active {
    opacity: 1;
    visibility: visible;
}

.service-popup-content {
    width: min(720px, 100%);
    max-height: 85vh;

    position: relative;

    padding: 42px;

    overflow-y: auto;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at top right,
            rgba(101, 193, 255, 0.15),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255, 106, 0, 0.10),
            transparent 32%
        ),
        #102d45;

    border:
        1px solid rgba(101, 193, 255, 0.20);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.50);

    transform: translateY(25px) scale(0.96);

    transition: 0.3s;
}

.service-popup.active .service-popup-content {
    transform: translateY(0) scale(1);
}

.service-popup-close {
    position: absolute;

    top: 15px;
    right: 20px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 34px;

    cursor: pointer;
}

.service-popup-label {
    color: #65c1ff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.service-popup-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 15px;

    background: rgba(30, 136, 229, 0.14);

    border:
        1px solid rgba(101, 193, 255, 0.20);

    font-size: 28px;
}

.service-popup h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 30px;
}

.service-popup-description {
    margin-bottom: 25px;

    color: #c1ccd6;

    line-height: 1.7;
}

.service-popup-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

    margin-bottom: 28px;
}

.service-popup-grid span {
    padding: 13px 15px;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;
}

.service-popup-grid span::before {
    content: "✓";

    margin-right: 8px;

    color: #ff7a18;

    font-weight: 800;
}

.service-popup-quote {
    display: inline-flex;
}

@media (max-width: 650px) {

    .service-popup-content {
        padding: 38px 22px 26px;
    }

    .service-popup-grid {
        grid-template-columns: 1fr;
    }

    .service-popup-quote {
        width: 100%;
    }
}
/* =========================================
   BOOKING CARD
========================================= */

.booking-card {
    padding: 45px;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 106, 0, 0.15),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(30, 136, 229, 0.15),
            transparent 35%
        ),
        rgba(16, 42, 64, 0.92);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.24);
}

.booking-card h3 {
    margin:
        12px 0
        14px;

    color: #ffffff;

    font-size: 30px;
}

.booking-card > p:not(.section-label) {
    margin-bottom: 28px;

    color: #c1ccd6;

    line-height: 1.7;
}


/* GRID */

.booking-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


/* FIELD */

.booking-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.booking-field-full {
    margin-top: 16px;
}

.booking-field label {
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;

    padding: 13px 14px;

    border-radius: 10px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    background:
        rgba(255, 255, 255, 0.04);

    color: #ffffff;

    font-family: inherit;

    outline: none;

    transition: 0.3s;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: #65c1ff;

    box-shadow:
        0 0 0 3px rgba(101, 193, 255, 0.08);
}


/* SELECT OPTIONS */

.booking-field select option {
    background: #102a40;
    color: #ffffff;
}


/* BUTTON */

.booking-submit {
    width: 100%;

    margin-top: 20px;

    padding: 15px 20px;

    border: 1px solid rgba(255, 106, 0, 0.75);

    border-radius: 10px;

    background:
        rgba(255, 106, 0, 0.06);

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.booking-submit:hover {
    transform: translateY(-3px);

    background:
        rgba(255, 106, 0, 0.12);

    box-shadow:
        0 0 12px rgba(255, 106, 0, 0.25),
        0 0 28px rgba(255, 106, 0, 0.12);
}


/* NOTE */

.booking-note {
    margin-top: 14px;

    color: rgba(255, 255, 255, 0.50);

    font-size: 12px;

    text-align: center;
}


/* MOBILE */

@media (max-width: 650px) {

    .booking-card {
        padding: 32px 22px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   SERVICE CARD IMAGE - COOLING
========================================= */

.service-card-with-image {
    padding: 0 !important;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.service-card-body {
    position: relative;

    padding: 32px 35px 35px;
}


/* icon overlaps image slightly */

.service-card-with-image .service-icon {
    margin-top: -58px;
    margin-bottom: 24px;

    position: relative;
    z-index: 2;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.30);
}


/* subtle image zoom */

.service-card-with-image:hover .service-card-image img {
    transform: scale(1.06);
    filter: brightness(1.06);
}


/* MOBILE */

@media (max-width: 650px) {

    .service-card-image {
        height: 190px;
    }

    .service-card-body {
        padding:
            28px
            25px
            30px;
    }

}
/* =========================================
   CUSTOMER REVIEWS
========================================= */

.reviews {
    position: relative;
    overflow: hidden;
}


/* soft background glow */

.reviews::before {
    content: "";

    width: 420px;
    height: 420px;

    position: absolute;

    left: -220px;
    top: 15%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(30, 136, 229, 0.13),
            transparent 68%
        );

    pointer-events: none;
}


.reviews-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


.review-card {
    min-height: 300px;

    position: relative;

    padding: 32px;

    overflow: hidden;

    border-radius: 18px;

    border:
        1px solid rgba(101, 193, 255, 0.16);

    background:
        linear-gradient(
            145deg,
            rgba(31, 68, 96, 0.88),
            rgba(15, 42, 64, 0.94)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.review-card:nth-child(2) {
    border-color:
        rgba(255, 106, 0, 0.18);
}


.review-card:hover {
    transform: translateY(-7px);

    border-color: #65c1ff;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.26),
        0 0 30px rgba(30, 136, 229, 0.10);
}


.review-card:nth-child(2):hover {
    border-color: #ff7a18;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.26),
        0 0 30px rgba(255, 106, 0, 0.10);
}


.review-stars {
    margin-bottom: 20px;

    color: #ff7a18;

    font-size: 19px;

    letter-spacing: 3px;
}


.review-quote {
    position: absolute;

    top: 10px;
    right: 24px;

    color:
        rgba(101, 193, 255, 0.10);

    font-size: 100px;

    font-family: Georgia, serif;

    line-height: 1;
}


.review-card p {
    min-height: 115px;

    position: relative;

    z-index: 2;

    color: #c1ccd6;

    font-size: 15px;

    line-height: 1.8;
}


.review-author {
    margin-top: 25px;

    display: flex;
    align-items: center;

    gap: 13px;
}


.review-avatar {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(30, 136, 229, 0.35),
            rgba(101, 193, 255, 0.15)
        );

    border:
        1px solid rgba(101, 193, 255, 0.25);

    color: #ffffff;

    font-weight: 800;
}


.review-author strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 14px;
}


.review-author span {
    color: #9eb0bf;

    font-size: 12px;
}


/* TABLET */

@media (max-width: 1000px) {

    .reviews-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: auto;
    }

    .review-card p {
        min-height: auto;
    }

}
/* =========================================
   CUSTOMER REVIEWS CAROUSEL
========================================= */

.reviews {
    position: relative;
    overflow: hidden;
}

.reviews-demo-label {
    display: inline-block;

    margin-top: 12px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* carousel wrapper */

.reviews-carousel {
    max-width: 1320px;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 18px;
}


/* viewport */

.reviews-viewport {
    width: 100%;

    overflow: hidden;
}


/* moving track */

.reviews-track {
    display: flex;

    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}


/* individual review */

.review-slide {
    flex: 0 0 33.333%;

    padding: 0 12px;
}


/* review card */

.review-card {
    min-height: 315px;

    position: relative;

    padding: 32px;

    overflow: hidden;

    border-radius: 20px;

    border:
        1px solid rgba(101, 193, 255, 0.17);

    background:
        linear-gradient(
            145deg,
            rgba(31, 68, 96, 0.90),
            rgba(15, 42, 64, 0.96)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.22);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.review-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(101, 193, 255, 0.65);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(30, 136, 229, 0.11);
}


/* alternating orange accent */

.review-slide:nth-child(even)
.review-card {
    border-color:
        rgba(255, 106, 0, 0.18);
}


.review-slide:nth-child(even)
.review-card:hover {
    border-color: #ff7a18;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(255, 106, 0, 0.10);
}


/* stars */

.review-stars {
    margin-bottom: 20px;

    color: #ff7a18;

    font-size: 19px;

    letter-spacing: 3px;
}


/* quote symbol */

.review-quote {
    position: absolute;

    top: 5px;
    right: 22px;

    color:
        rgba(101, 193, 255, 0.09);

    font-size: 105px;

    font-family:
        Georgia,
        serif;

    line-height: 1;
}


/* review text */

.review-text {
    min-height: 140px;

    position: relative;

    z-index: 2;

    color: #c1ccd6;

    font-size: 15px;

    line-height: 1.8;
}


/* author */

.review-author {
    margin-top: 25px;

    display: flex;
    align-items: center;

    gap: 13px;
}


.review-avatar {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(30, 136, 229, 0.35),
            rgba(101, 193, 255, 0.15)
        );

    border:
        1px solid rgba(101, 193, 255, 0.25);

    color: #ffffff;

    font-weight: 800;
}


.review-author strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 14px;
}


.review-author span {
    color: #9eb0bf;

    font-size: 12px;
}


/* arrows */

.reviews-arrow {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(101, 193, 255, 0.30);

    background:
        rgba(20, 50, 74, 0.75);

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s;
}


.reviews-arrow:hover {
    transform: scale(1.08);

    border-color: #65c1ff;

    background:
        rgba(30, 136, 229, 0.20);
}


/* dots */

.reviews-dots {
    margin-top: 28px;

    display: flex;
    justify-content: center;

    gap: 9px;
}


.review-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.22);

    cursor: pointer;

    transition: 0.3s;
}


.review-dot.active {
    width: 24px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #65c1ff,
            #ff7a18
        );
}


/* TABLET */

@media (max-width: 1000px) {

    .review-slide {
        flex: 0 0 50%;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .reviews-carousel {
        gap: 8px;
    }

    .review-slide {
        flex: 0 0 100%;

        padding: 0 5px;
    }

    .reviews-arrow {
        width: 38px;
        height: 38px;

        font-size: 17px;
    }

    .review-card {
        min-height: 300px;

        padding: 27px 23px;
    }

    .review-text {
        min-height: auto;
    }

}