* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111;
    background: #fff;

}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* TOPBAR */
.topbar {
    background: #111;
    color: #fff;
    font-size: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left {
    display: flex;
    /* justify-content: center; */
    text-align: center;
    gap: 10px;
}

.call-link {
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;

    background: linear-gradient(90deg, #ffae00, #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: pulseGlow 1.2s infinite;
}

/* COMBINED POP + GLOW */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(255, 60, 31, 0);
    }

    50% {
        transform: scale(1.15);
        text-shadow:
            0 0 8px #ff801fcc,
            0 0 16px rgba(255, 174, 0, 0.7),
            0 0 25px #ff801fcc;
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(255, 60, 31, 0);
    }
}

.top-left-sub {
    display: flex;
    /* justify-content: center; */
    text-align: center;

}

.top-left-sub h5 {
    font-size: 14px;
    margin-right: 3px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
}

.social-icons a i {
    margin-right: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover .fa-facebook-f {
    color: #929bff;
}

.social-icons a:hover .fa-instagram {
    background: linear-gradient(90deg, #ff492d, #ffb20b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-btn {
    position: relative;
    display: inline-block;
    padding: 29px 20px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    background: #242424;
    font-weight: 600;

}

/* BACKGROUND LAYER */
.quote-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    background: #bcbcbc;
    z-index: -1;
    transition: height 0.4s ease;
}

.quote-btn:hover {
    color: #050505;
    font-weight: 600;
}

header {
    height: 120px;
    /* adjust based on your design */
}

/* HOVER EFFECT */
.quote-btn:hover::before {
    height: 100%;
    /* niche theke uthe full fill */
}



/* OVERLAY */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* NAVBAR */
.navbar {
    background: #f5f5f5;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 999;
    transition: transform 0.4s ease;
}

/* navbar initially hidden (scroll er jonno) */
.navbar.hide {
    transform: translateY(-100%);
}

/* show animation */
.navbar.show {
    transform: translateY(-40px);

}


/* topbar hide */
.topbar.hide {
    transform: translateY(-100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px 0; */
    min-height: 60px;
}

.logo img {
    width: 90px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-links a:hover {

    color: #bd8305;

}




/* .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
  
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 180px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    pointer-events: none;
}

.dropdown-menu li a {
    padding: 12px 15px;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown:hover .dropdown-menu {
  

    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;

}

.dropdown-menu li a {
    display: block;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #bd8305;
    color: #fff;
} */

/* ICONS */
.nav-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.nav-icons .menu-toggle {
    display: none;
    font-size: 28px;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #111;
    color: #fff;
    transition: 0.3s;
    padding: 20px;
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;

}

.close-menu {
    font-size: 22px;
    cursor: pointer;
}


/* MOBILE DROPDOWN */
.mobile-dropdown ul {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown.active ul {
    display: block;
}

/* banner */

/* HERO */
.hero {
    position: relative;
    height: 75vh;
    overflow: hidden;
    z-index: 1;
}

/* DARK OVERLAY IMPROVED */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    /* Modern gradient overlay */
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.473) 20%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.026) 100%);

    z-index: 2;
}

/* SLIDER */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}


/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    transform-origin: center;
    transform: rotateY(90deg);
    opacity: 0;

    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* ACTIVE */
.slide.active {
    transform: rotateY(0deg);
    opacity: 1;
    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: absolute;
    z-index: 5;
    color: #fff;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 16px 26px;
    color: #242424;
    text-decoration: none;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    background: #ffffff;
    font-size: 18px;
    width: fit-content;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #242424;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1);

}

.hero-btn:hover {
    color: #ffffff;
}

.hero-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    /* background: #a87c4f; */
    z-index: -1;

    transition: height 0.4s ease;
    background: #242424;
}


/* HOVER EFFECT */
.hero-btn:hover::before {
    height: 100%;
    /* niche theke uthe full fill */
}

/* DARK OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
}



/* ================= SERVICES ================= */

.services {
    padding: 60px 0;
    background: #111;
}

.services-container {
    width: 100%;
}

/* SINGLE ROW */
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

/* IMAGE */
.service-image {
    width: 100%;
    height: 100%;
    border: 3px solid #ffffff;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #111;
    color: #fff;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}


.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 20px;
}

/* BUTTON */
.service-btn,
.see-all-servicesbtn {
    display: inline-block;
    background: #fff;
    color: #242424;
    padding: 12px 22px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    width: fit-content;
    position: relative;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    font-weight: 500;
    border: 1px solid #fff;
    border-radius: 6px;

}

.service-btn::before,
.see-all-servicesbtn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    background: #414141;
    z-index: -1;

    transition: height 0.4s ease;
    color: #ffffff;
}

/* HOVER EFFECT */
.service-btn:hover::before,
.see-all-servicesbtn:hover::before {
    height: 100%;
    /* niche theke uthe full fill */
}

.service-btn:hover,
.see-all-servicesbtn:hover {
    color: #ffffff;
    border: 1px solid #fff;
}

.see-all-servicesbtn-section {

    text-align: center;
    margin-top: 50px;
}

/* REVERSE STYLE */
.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.services-heading {
    text-align: center;
    margin-bottom: 80px;
}


.service-subtitle {
    letter-spacing: 4px;
    font-size: 20px;
    color: #bd8305;
    margin-bottom: 5px;
    font-weight: 600;
}

.service-title {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    color: #fff;

}

/* ----------------- About us style ---------------- */


/* ================= ABOUT ================= */

.about {
    padding: 60px 0;
    background: #f8f6f3;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE SIDE */
.about-images {
    position: relative;
    z-index: 1;
}

.about-images .img-main {
    width: 80%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.img-main,
.img-overlay {
    position: relative;
    z-index: 2;
}

.about-images .img-overlay {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 65%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* DECOR BORDER */
.about-images::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 70px;
    width: 80%;
    height: 100%;
    border: 5px solid #7d5703;
    z-index: 0;
}

/* CONTENT */
.about-content {
    padding-right: 40px;
}

.about-subtitle {
    letter-spacing: 4px;
    font-size: 18px;
    color: #bd8305;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-title {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-weight: 500;

}

.about-highlight {
    color: #242424;
    font-size: 18px;

    margin-bottom: 20px;
    display: inline-block;
    font-weight: 500;


}

.about-text {
    color: #666;
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: justify;
}

/* LIST */
.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #444;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #212121;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    background: #242424;
    padding: 12px 30px;
    text-decoration: none;
    color: #f6f6f6;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;

    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    border-radius: 6px;
    border: 1px solid #242424;

}

.about-btn:hover {
    color: #242424;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #242424;

}


.about-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    color: #fff;

    background: #ffffff;
    z-index: -1;
    transition: height 0.4s ease;
}

/* HOVER EFFECT */
.about-btn:hover::before {
    height: 100%;

}

.about-bold {
    font-weight: 700;
    color: #111;
    /* optional, jodi dark chai */
}


.quote-submitbtn {
    display: inline-block;
    background: #242424;
    padding: 12px 30px;
    text-decoration: none;
    color: #f6f6f6;
    letter-spacing: 2px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 500;

    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    border-radius: 6px;
    border: 1px solid #242424;
    cursor: pointer;
    font-size: 16px;
}

.quote-submitbtn:hover {
    color: #242424;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #242424;

}


.quote-submitbtn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    color: #fff;

    background: #ffffff;
    z-index: -1;
    transition: height 0.4s ease;
}

/* HOVER EFFECT */
.quote-submitbtn:hover::before {
    height: 100%;

}


/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        margin-bottom: 50px;
    }

    .about-images .img-main {
        width: 100%;
    }

    .about-images .img-overlay {
        width: 70%;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .about-title {
        font-size: 32px;

        margin-bottom: 20px;
        text-align: center;

    }

}

@media (max-width: 428px) {

    .about {
        padding: 40px 0;
        background: #f8f6f3;
    }

    .about-title {
        font-size: 30px;

    }
}


/* FAQ SECTION */
.faq {
    padding: 60px 0;
    background: linear-gradient(to bottom, #eaf4f7, #ffffff);
}

/* HEADING */
.faq-heading {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    letter-spacing: 4px;
    font-size: 18px;
    color: #bd8305;
    font-weight: 600;
}

.faq-title {
    font-size: 48px;
    font-family: "Playfair Display", serif;
    margin-top: 10px;
}

/* WRAPPER */
.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #242424;
}

/* ACTIVE */
.faq-item.active {
    background: #f5fbfd;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 500;
}

.faq-question i {
    font-size: 18px;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    margin-top: 15px;
    color: #666;
    line-height: 1.7;
}

/* ACTIVE OPEN */
.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ICON CHANGE */
.faq-item.active i {
    transform: rotate(180deg);
}

@media (max-width: 428px) {

    .faq-title {
        font-size: 32px;
    }

    .faq {
        padding: 40px 0;

    }

    .faq-item {
        background: #fff;
        border-radius: 10px;
        margin-bottom: 10px;
        padding: 10px;

    }

    .faq-question h4 {
        font-size: 15px;
        font-weight: 500;
    }

}


/* testimonials */

.testimonials {
    padding: 60px 20px 100px 20px;
    background: #1a1a1a;
}

.section-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 50px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    text-align: center;
    color: #fdfdfd;
}

/* LAYOUT */
.testimonial-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

/* LEFT SIDE */
.testimonial-users {
    position: relative;
    width: 320px;
    height: 420px;
}

/* USER */
.user {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    opacity: 0.4;
    transition: all 0.5s ease;
    color: #fdfdfd;
}

.user-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #5d5d5d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.user-icon i {
    font-size: 22px;
    color: #bd8305;
    /* same gold theme */
}

/* ACTIVE */
.user.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
    z-index: 2;
}

/* RIGHT CONTENT */
.testimonial-content {
    max-width: 500px;
    position: relative;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #fdfdfd;
}

/* BIG QUOTE STYLE */
.big-quote {
    position: absolute;
    top: -150px;
    right: -60px;
    font-size: 130px;
    color: #fff;
    pointer-events: none;
    animation: floatQuote 4s ease-in-out infinite;
}

/* ICON */
.big-quote i {
    font-size: inherit;
}

.stars i {
    color: #e59c00;
    font-size: 14px;
}

/* FLOAT ANIMATION */
@keyframes floatQuote {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* BUTTONS */
.testimonial-buttons {
    margin-top: 30px;
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
}

.testimonial-buttons button {
    width: 45px;
    height: 45px;
    border: none;
    background: #ffffff;
    color: #242424;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    border: 1px solid #ffffff;

}

.testimonial-buttons button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    background: #363636;
    z-index: -1;

    transition: height 0.4s ease;
}


/* HOVER EFFECT */
.testimonial-buttons button:hover::before {
    height: 100%;
    /* niche theke uthe full fill */
}

.testimonial-buttons button:hover {
    border: 1px solid #ffffff;

    color: #ffffff;
}

.testimonial-subtitle {
    letter-spacing: 4px;
    font-size: 20px;
    color: #bd8305;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 600;
}

/* footer */

/* FOOTER */
.main-footer {
    position: relative;
    background: url('../images/services/services1.jpeg') center/cover no-repeat;
    color: #fff;
    padding-top: 40px;
    background-attachment: fixed;
}

/* DARK OVERLAY */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

/* WRAPPER */
.footer-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    z-index: 2;
}

/* LEFT */
.footer-logo img {
    width: 140px;
    margin-bottom: 10px;

}

.footer-logo h3 {
    font-size: 22px;
    letter-spacing: 2px;
}

.footer-logo span {
    font-size: 12px;
    color: #bbb;
}

/* CTA BUTTON */
.footer-call {
    display: inline-block;
    margin-bottom: 20px;
    background: #ffffff;
    color: #242424;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    border: 1px solid #ffffff;

}


.footer-call::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    /* niche theke start */
    width: 100%;
    height: 0%;
    /* initially hidden */

    background: #414141;
    z-index: -1;

    transition: height 0.4s ease;
}


.footer-call:hover::before {
    height: 100%;

}

.footer-call:hover {
    color: #ffffff;

}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials i {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    /* IMPORTANT */
    z-index: 1;
    color: #242424;
    border: 1px solid #ffffff;
}

.footer-socials a {
    text-decoration: none;
}

.footer-socials i::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #414141;
    z-index: -1;
    transition: height 0.4s ease;
}


.footer-socials i:hover::after {
    height: 100%;
}

.footer-socials i:hover {
    color: #ffffff;

}

/* COLUMNS */
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #e59c00;
}

/* BOTTOM */
.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.477);
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.footer-bottom p {
    /* margin-bottom: 10px; */
    font-size: 14px;
    color: #bbb;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Logo full width */
    .footer-left {
        grid-column: 1 / -1;
        text-align: center;
    }

    /* USEFUL LINKS */
    .footer-col:nth-child(2) {
        grid-column: 1 / 2;
    }

    /* SERVICES */
    .footer-col:nth-child(3) {
        grid-column: 2 / 3;
    }

    /* CALL SECTION full width */
    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-call {
        display: inline-block;
        margin: 0 auto 10px;
    }

    .footer-bottom p {
        /* margin-bottom: 10px; */
        font-size: 12px;
        color: #bbb;
    }
}


/* ================= QUOTE MODAL ================= */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

/* ACTIVE */
.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

/* OVERLAY */
.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

/* BOX */
.quote-box {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 10px;
    z-index: 2;

    transform: translateY(50px);
    transition: 0.4s ease;
}

/* ANIMATION */
.quote-modal.active .quote-box {
    transform: translateY(0);
}

/* CLOSE BUTTON */
.quote-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* FORM */
.quote-box h2 {
    margin-bottom: 10px;
}

.quote-box p {
    margin-bottom: 20px;
    color: #666;
}

.quote-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-box input,
.quote-box select,
.quote-box textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.quote-box textarea {
    min-height: 100px;
    resize: none;
}


.nav-links a.active,
.mobile-menu a.active {
    color: #bd8305;
    /* tomar highlight color */
    font-weight: 600;
}