/* =====================================================
   AEROVEX HEADER CSS
   Complete Header + Responsive Navigation
===================================================== */


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    height: 45px;

    background: #061A3A;

    color: #FFFFFF;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.top-bar-content {
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   TOP BAR INFO
===================================================== */

.top-info,
.top-contact {
    display: flex;

    align-items: center;

    gap: 28px;
}


.top-info span,
.top-contact a {
    display: flex;

    align-items: center;

    gap: 7px;

    font-family: var(--font-body);

    font-size: var(--fs-xs);

    font-weight: 400;

    white-space: nowrap;
}


.top-info i,
.top-contact i {
    color: var(--sky-blue);

    font-size: 11px;
}


.top-contact a {
    transition:
        color 0.3s ease;
}


.top-contact a:hover {
    color: var(--sky-blue);
}


/* =====================================================
   MAIN HEADER
===================================================== */

.header {
    position: fixed;

    top: 45px;

    left: 0;

    width: 100%;

    z-index: 99999;

    background: #FFFFFF;

    box-shadow:
        0 8px 30px rgba(6, 26, 58, 0.08);

    transition:
        top 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}


/* =====================================================
   HEADER WRAPPER
===================================================== */

.header-wrapper {
    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
}


.logo img {
    width: auto;

    height: 58px;

    display: block;
}


/* =====================================================
   NAVIGATION
===================================================== */

.navbar {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 25px;
}


/* =====================================================
   NAV MENU
===================================================== */

.nav-menu {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    list-style: none;

    margin: 0;

    padding: 0;
}


/* =====================================================
   NAV ITEM
===================================================== */

.nav-menu>li {
    position: relative;

    display: flex;

    align-items: center;
}


/* =====================================================
   NAV LINKS
===================================================== */

.nav-menu>li>a {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 8px 0;

    color: #1A1A1A;

    font-family: var(--font-heading);

    font-size: var(--fs-sm);

    font-weight: 600;

    line-height: 1.4;

    white-space: nowrap;

    transition:
        color 0.3s ease;
}


/* =====================================================
   NAV HOVER
===================================================== */

.nav-menu>li>a:hover {
    color: var(--primary-blue);
}


/* =====================================================
   ACTIVE MENU
===================================================== */

.nav-menu>li>a.active {
    color: var(--primary-blue);
}


/* =====================================================
   HOVER / ACTIVE LINE
===================================================== */

.nav-menu>li>a::before {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 2px;

    transform:
        translateX(-50%);

    background: var(--primary-blue);

    border-radius: 20px;

    transition:
        width 0.3s ease;
}


.nav-menu>li>a:hover::before,
.nav-menu>li>a.active::before {
    width: 100%;
}


/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 10px;
}


/* =====================================================
   CALL NOW BUTTON
===================================================== */

.call-btn {
    height: 44px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border:
        1.5px solid var(--primary-blue);

    border-radius: 50px;

    background: transparent;

    color: var(--primary-blue);

    font-family: var(--font-heading);

    font-size: var(--fs-sm);

    font-weight: 600;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.call-btn:hover {
    background: var(--primary-blue);

    color: var(--white);

    transform: translateY(-2px);
}


.call-btn i {
    font-size: 11px;
}


/* =====================================================
   BOOK NOW BUTTON
===================================================== */

.book-btn {
    height: 46px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 50px;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--dark-navy));

    color: var(--white);

    font-family: var(--font-heading);

    font-size: var(--fs-sm);

    font-weight: 600;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(11, 110, 232, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.book-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(11, 110, 232, 0.28);
}


.book-btn i {
    font-size: 10px;

    transition:
        transform 0.25s ease;
}


.book-btn:hover i {
    transform: translateX(3px);
}


/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-btn {
    display: none;

    width: 44px;

    height: 44px;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 10px;

    background: var(--primary-blue);

    color: var(--white);

    cursor: pointer;

    font-size: 18px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.menu-btn:hover {
    background: var(--dark-navy);
}


.menu-btn i {
    transition:
        transform 0.3s ease;
}


.menu-btn.active i {
    transform: rotate(90deg);
}


/* =====================================================
   STICKY HEADER
   AFTER SCROLL
===================================================== */

.header.sticky {
    top: 0;

    background:
        rgba(255, 255, 255, 0.80);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.45);

    box-shadow:
        0 10px 35px rgba(6, 26, 58, 0.12);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1200px) {

    .navbar {
        margin-left: 15px;

        margin-right: 15px;
    }


    .nav-menu {
        gap: 22px;
    }


    .call-btn {
        padding: 0 14px;
    }


    .book-btn {
        padding: 0 16px;
    }

}


/* =====================================================
   MOBILE / TABLET
===================================================== */

@media (max-width: 991px) {

    /* ---------------------------------
       TOP BAR
    --------------------------------- */

    .top-bar {
        display: none;
    }


    /* ---------------------------------
       HEADER
    --------------------------------- */

    .header {
        top: 0;
    }


    .header-wrapper {
        height: 75px;
    }


    /* ---------------------------------
       LOGO
    --------------------------------- */

    .logo img {
        height: 50px;
    }


    /* ---------------------------------
       DESKTOP ACTIONS
    --------------------------------- */

    .header-actions {
        display: none;
    }


    /* ---------------------------------
       MOBILE BUTTON
    --------------------------------- */

    .menu-btn {
        display: flex;

        position: relative;

        z-index: 100001;
    }


    /* ---------------------------------
       MOBILE NAVIGATION
    --------------------------------- */

    .navbar {
        position: fixed;

        top: 0;

        right: -100%;

        width: 320px;

        max-width: 90%;

        height: 100vh;

        margin: 0;

        padding:
            90px 25px 30px;

        display: flex;

        align-items: flex-start;

        justify-content: flex-start;

        background: #FFFFFF;

        box-shadow:
            -20px 0 50px rgba(0, 0, 0, 0.10);

        overflow-y: auto;

        transition:
            right 0.35s ease;

        z-index: 100000;
    }


    .navbar.active {
        right: 0;
    }


    /* ---------------------------------
       MOBILE MENU
    --------------------------------- */

    .nav-menu {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 0;
    }


    .nav-menu>li {
        width: 100%;

        display: block;

        border-bottom:
            1px solid #EEF2F7;
    }


    .nav-menu>li>a {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 16px 0;

        font-size: var(--fs-md);
    }


    /* Remove underline on mobile */

    .nav-menu>li>a::before {
        display: none;
    }


    /* ---------------------------------
       MOBILE ACTIVE
    --------------------------------- */

    .nav-menu>li>a.active {
        color: var(--primary-blue);
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 576px) {

    .container {
        width:
            calc(100% - 28px);
    }


    .header-wrapper {
        height: 70px;
    }


    .logo img {
        height: 46px;
    }


    .menu-btn {
        width: 42px;

        height: 42px;

        border-radius: 9px;

        font-size: 17px;
    }


    .navbar {
        width: 100%;

        max-width: 100%;

        padding-left: 20px;

        padding-right: 20px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .logo img {
        height: 42px;
    }


    .menu-btn {
        width: 40px;

        height: 40px;

        font-size: 16px;
    }

}

/*==================================================
            FOOTER CSS - PART 1
==================================================*/

/*==============================
            FOOTER
==============================*/

.footer {
    background: #061A3A;
    color: #ffffff;
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0B6EE8, #56B8FF, #0B6EE8);
}

/*==============================
        FOOTER GRID
==============================*/

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 70px;
}

/*==============================
        LOGO
==============================*/

.footer-logo {
    width: 220px;
    margin-bottom: 25px;
}

.footer-text {
    color: #cfd8e3;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
}

/*==============================
        HEADING
==============================*/

.footer-column h3 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    margin-bottom: 28px;
    color: #ffffff;
    position: relative;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #0B6EE8;
    border-radius: 20px;
}

/*==============================
        LIST
==============================*/

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: #cfd8e3;
    transition: .35s;
    display: inline-flex;
    align-items: center;
}

.footer-column ul li a:hover {
    color: #56B8FF;
    transform: translateX(8px);
}

/*==============================
      CONTACT LIST
==============================*/

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #cfd8e3;
    line-height: 1.7;
}

.contact-list i {
    width: 18px;
    color: #56B8FF;
    margin-top: 4px;
}

/*==============================
        SOCIAL
==============================*/

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    transition: .35s;
    font-size: 18px;
}

.social-icons a:hover {
    background: #0B6EE8;
    transform: translateY(-6px);
}

/*==============================
      FOOTER BOTTOM
==============================*/

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #cfd8e3;
    font-size: 15px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-links a {
    color: #cfd8e3;
    transition: .3s;
}

.footer-links a:hover {
    color: #56B8FF;
}

/*==================================================
            FOOTER CSS - PART 2
==================================================*/

/*==============================
      BACKGROUND EFFECTS
==============================*/

.footer::after {

    content: "";

    position: absolute;

    right: -180px;
    bottom: -180px;

    width: 420px;
    height: 420px;

    background: radial-gradient(circle,
            rgba(11, 110, 232, .18),
            transparent 70%);

    pointer-events: none;

}

.footer-column {

    position: relative;
    z-index: 2;

}

/*==============================
      HOVER ANIMATION
==============================*/

.footer-column {

    transition: .35s ease;

}

.footer-column:hover {

    transform: translateY(-4px);

}

.footer-column ul li a {

    position: relative;

}

.footer-column ul li a::before {

    content: "";

    width: 0;

    height: 2px;

    background: #56B8FF;

    position: absolute;

    left: 0;

    bottom: -4px;

    transition: .3s;

}

.footer-column ul li a:hover::before {

    width: 100%;

}

/*==============================
      FOOTER COPYRIGHT
==============================*/

.footer-bottom {

    background: rgba(0, 0, 0, .12);

}

.footer-bottom-wrapper {

    gap: 20px;
    flex-wrap: wrap;

}

.footer-links {

    flex-wrap: wrap;

}

/*==============================
      TABLET
==============================*/

@media(max-width:1024px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 50px;

    }

}

/*==============================
      MOBILE
==============================*/

@media(max-width:768px) {

    .footer {

        padding: 70px 0 0;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

        text-align: center;

    }

    .footer-logo {

        margin: 0 auto 25px;

    }

    .footer-column h3::after {

        left: 50%;

        transform: translateX(-50%);

    }

    .social-icons {

        justify-content: center;

    }

    .contact-list li {

        justify-content: center;

        text-align: left;

    }

    .footer-bottom-wrapper {

        flex-direction: column;

        text-align: center;

        gap: 15px;

    }

    .footer-links {

        justify-content: center;

    }

}

/*==============================
      SMALL MOBILE
==============================*/

@media(max-width:576px) {

    .footer {

        padding: 60px 0 0;

    }

    .footer-grid {

        gap: 35px;

    }

    .footer-column h3 {

        font-size: 20px;

    }

    .footer-text {

        font-size: 14px;

    }

    .social-icons a {

        width: 42px;
        height: 42px;

        font-size: 16px;

    }

    .footer-bottom {

        padding: 18px 0;

    }

    .footer-bottom p {

        font-size: 13px;

    }

    .footer-links {

        gap: 18px;

    }

    .footer-links a {

        font-size: 13px;

    }

}

/*==============================
      SMOOTH ANIMATION
==============================*/

.footer * {

    transition: .3s ease;

}


/* =====================================================
   REUSABLE CTA
===================================================== */

.cta {
    padding: var(--section-padding) 0;
}


/* =====================================================
   CTA WRAPPER
===================================================== */

.cta-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 360px;

    padding: 60px 65px;

    border-radius: 30px;

    background:
        linear-gradient(135deg,
            #0B6EE8 0%,
            #0754B8 45%,
            #061A3A 100%);

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(6, 26, 58, 0.15);

}


/* =====================================================
   BACKGROUND CIRCLES
===================================================== */

.cta-wrapper::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);

}


.cta-wrapper::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -120px;
    bottom: -150px;

    border-radius: 50%;

    background:
        rgba(86, 184, 255, 0.08);

}


/* =====================================================
   CTA CONTENT
===================================================== */

.cta-content {

    position: relative;

    width: 65%;

    color: var(--white);

    z-index: 2;

}


/* =====================================================
   BADGE
===================================================== */

.cta-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    padding: 8px 16px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.10);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: var(--fs-xs);

    font-weight: 600;

}


.cta-badge i {

    color: #56B8FF;

    font-size: 11px;

}


/* =====================================================
   CTA HEADING
===================================================== */

.cta h2 {

    max-width: 700px;

    margin-bottom: 15px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: var(--fs-h2);

    font-weight: 700;

    line-height: 1.2;

}


/* =====================================================
   CTA PARAGRAPH
===================================================== */

.cta p {

    max-width: 620px;

    margin-bottom: 28px;

    color:
        rgba(255, 255, 255, 0.72);

    font-family: var(--font-body);

    font-size: var(--fs-base);

    line-height: 1.7;

}


/* =====================================================
   BUTTONS
===================================================== */

.cta-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

}


/* =====================================================
   PRIMARY BUTTON
===================================================== */

.cta-primary {

    height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 22px;

    border-radius: 50px;

    background: var(--white);

    color: var(--dark-navy);

    font-family: var(--font-heading);

    font-size: var(--fs-sm);

    font-weight: 600;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.cta-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);

}


.cta-primary i {

    font-size: 10px;

    transition:
        transform 0.25s ease;

}


.cta-primary:hover i {

    transform: translateX(3px);

}


/* =====================================================
   SECONDARY BUTTON
===================================================== */

.cta-secondary {

    height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 22px;

    border-radius: 50px;

    border:
        1px solid rgba(255, 255, 255, 0.30);

    background:
        rgba(255, 255, 255, 0.04);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: var(--fs-sm);

    font-weight: 500;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.cta-secondary:hover {

    transform: translateY(-3px);

    background: var(--white);

    color: var(--dark-navy);

}


.cta-secondary i {

    font-size: 11px;

}


/* =====================================================
   RIGHT VISUAL
   NO IMAGE
===================================================== */

.cta-visual {

    position: relative;

    width: 30%;

    min-height: 250px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 2;

}


/* =====================================================
   MAIN VISUAL
===================================================== */

.cta-visual-main {

    position: relative;

    width: 120px;

    height: 120px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    color: #8ED4FF;

    font-size: 45px;

    box-shadow:
        0 0 0 20px rgba(255, 255, 255, 0.025);

}


/* =====================================================
   DECORATIVE RINGS
===================================================== */

.cta-ring {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.10);

}


.cta-ring-1 {

    width: 180px;
    height: 180px;

}


.cta-ring-2 {

    width: 250px;
    height: 250px;

    border-color:
        rgba(255, 255, 255, 0.06);

}


/* =====================================================
   FLOATING ICONS
===================================================== */

.cta-floating {

    position: absolute;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.10);

    border:
        1px solid rgba(255, 255, 255, 0.14);

    color: var(--white);

    font-size: 13px;

}


.cta-floating.one {

    top: 25px;

    left: 10%;

}


.cta-floating.two {

    top: 55px;

    right: 5%;

}


.cta-floating.three {

    bottom: 25px;

    left: 20%;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .cta-wrapper {

        flex-direction: column;

        text-align: center;

        padding: 50px 35px;

    }


    .cta-content {

        width: 100%;

        max-width: 700px;

    }


    .cta h2 {

        margin-left: auto;

        margin-right: auto;

        font-size: var(--fs-h3);

    }


    .cta p {

        margin-left: auto;

        margin-right: auto;

    }


    .cta-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }


    .cta-visual {

        width: 100%;

        min-height: 220px;

        margin-top: 25px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .cta {

        padding: 55px 0;

    }


    .cta-wrapper {

        padding: 38px 22px;

        border-radius: 22px;

    }


    .cta h2 {

        font-size: var(--fs-h4);

    }


    .cta p {

        font-size: var(--fs-sm);

        line-height: 1.6;

    }


    .cta-buttons {

        flex-direction: column;

        width: 100%;

    }


    .cta-primary,
    .cta-secondary {

        width: 100%;

    }


    .cta-visual {

        min-height: 190px;

    }


    .cta-visual-main {

        width: 90px;

        height: 90px;

        font-size: 32px;

    }


    .cta-ring-1 {

        width: 140px;

        height: 140px;

    }


    .cta-ring-2 {

        width: 190px;

        height: 190px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .cta-wrapper {

        padding: 32px 17px;

    }


    .cta-badge {

        padding: 7px 12px;

    }


    .cta h2 {

        font-size: var(--fs-h5);

    }


    .cta-visual {

        min-height: 170px;

    }

}