.navbar {
    align-items: center;
    padding: 6px 0;
}


/* =========================================
   TRANSPARENT GLASS FORM
========================================= */

.hero-enquiry-form {
    width: 100%;
    max-width: 470px;

    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.30);
    padding: 32px;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
    margin-top: 90px;

}


/* FORM HEADING */

.form-heading {
    margin-bottom: 22px;
}

.form-heading h2 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.form-heading p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}


/* FORM GROUP */

.hero-enquiry-form .form-group {
    margin-bottom: 13px;
}


/* INPUT + SELECT */

.hero-enquiry-form .form-control {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 14px;
    outline: none;

    box-sizing: border-box;

    transition: all 0.3s ease;
}


/* PLACEHOLDER */

.hero-enquiry-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.80);
}


/* FOCUS */

.hero-enquiry-form .form-control:focus {
    border-color: #009fe3;
    background: rgba(255, 255, 255, 0.18);

    box-shadow: 0 0 0 2px rgba(0, 159, 227, 0.20);
}


/* SELECT */

.hero-enquiry-form select.form-control {
    cursor: pointer;
    color: #ffffff;
}


/* SELECT OPTIONS */

.hero-enquiry-form select.form-control option {
    color: #222222;
    background: #ffffff;
}


/* BUTTON */

.hero-form-btn {
    width: 100%;
    height: 52px;

    border: 0;
    border-radius: 6px;

    background: #009fe3;
    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.hero-form-btn:hover {
    background: #007db5;
    transform: translateY(-2px);
}


.hero {
    position: relative;
    background-image: url(imgs/bg1.png);
    background-size: cover;
    background-position: center;
    padding: 35px 0 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}


@media only screen and (max-width: 991px) {
    .section-title {
        margin-bottom: 23px;
        margin-top: 96px;
    }
}


/* =========================================
   GALLERY
========================================= */

.gallery-row {
    margin-top: 40px;
}

.gallery-item {
    margin-bottom: 25px;
}

.gallery-item figure {
    width: 100%;
    height: 220px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* VIEW GALLERY BUTTON */

.gallery-button {
    margin-top: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .gallery-item figure {
        height: 200px;
    }

}


/* =========================================
   MOBILE - 2 IMAGES
========================================= */

@media (max-width: 767px) {

    .gallery-row {
        margin-top: 30px;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    .gallery-item figure {
        height: 160px;
    }

}


/* =========================================
   CLIENT REVIEWS
========================================= */

.our-pricing {
    padding: 80px 0;
}

.our-pricing .section-title {
    margin-bottom: 45px;
}


/* REVIEW CARD */

.testimonial-item {
    height: auto !important;
    min-height: 0 !important;

    padding: 30px 28px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
}


/* HOVER */

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}


/* STARS */

.testimonial-stars {
    color: #009fe3;
    font-size: 19px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}


/* REVIEW */

.testimonial-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;

    margin: 0;
}


/* AUTHOR */

.testimonial-author {
    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


/* NAME */

.author-content h3 {
    color: #ffffff;
    font-size: 18px;

    margin: 0 0 4px;
}


/* ROLE */

.author-content span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

    .testimonial-item {
        min-height: 265px !important;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .our-pricing {
        padding: 70px 0;
    }

    .testimonial-item {
        margin-bottom: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .our-pricing {
        padding: 60px 0;
    }

    .our-pricing .section-title {
        margin-bottom: 30px;
    }

    .testimonial-item {
        padding: 25px 20px;
        margin-bottom: 20px;
        min-height: auto !important;
    }

    .testimonial-content p {
        font-size: 14px;
    }

}

/* =========================================
   MAIN FOOTER
========================================= */

.main-footer {
    background: #0d1113;
    color: #ffffff;
    width: 100%;
}

.footer-box {
    padding: 70px 0 0;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1fr 1.25fr;
    gap: 60px;
    align-items: start;
}


/* =========================================
   COMPANY
========================================= */

.footer-company {
    max-width: 360px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 145px;
    height: 115px;
    object-fit: contain;
    display: block;
}

.footer-company p {
    margin: 0;
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 350px;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-column h3 {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 18px;
}

.footer-column ul li:last-child {
    margin-bottom: 0;
}

.footer-column ul li a {
    color: #e2e2e2;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #009fe3;
    padding-left: 5px;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    color: #e2e2e2;
    font-size: 16px;
    line-height: 1.6;

    text-decoration: none;
}

.footer-contact-item:hover {
    color: #ffffff;
}


/* CONTACT ICON */

.footer-contact-icon {
    width: 24px;
    min-width: 24px;

    color: #009fe3;

    font-size: 18px;

    margin-top: 3px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    margin-top: 17px;
    padding: 21px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color: #aaaaaa;

    font-size: 15px;
    line-height: 1.5;
}

.footer-bottom strong {
    color: #ffffff;
}

.footer-bottom a {
    color: #009fe3;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
        gap: 35px;
    }

    .footer-column h3 {
        font-size: 21px;
    }

}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991px) {

    .footer-box {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }

    .footer-company {
        max-width: 100%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .footer-box {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-logo img {
        width: 130px;
        height: 100px;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .footer-column ul li {
        margin-bottom: 14px;
    }

    .footer-bottom {
        margin-top: 45px;

        flex-direction: column;
        align-items: flex-start;

        padding: 22px 0;
    }

}


.footer-box {
    padding: 28px 0 0;
}


.page-contact-us {
    padding: 43px 0;
}


.page-services {
    padding: 58px 0 26px;
}