@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* font-family: "Manrope", sans-serif; */
/* font-family: "Playfair Display", serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a,
p,
ul,
ol,
span,
li,
strong,
i,
b,
u {
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    display: none;
}


.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
}


/* nav bar */
/* .navigation-bar {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    min-height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    justify-content: center;
    flex-direction: column;


    .nav-Container {
        width: 100%;
        height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .brand-logo {
            width: auto;

            img {
                width: 200px;
                height: auto;
            }
        }

        .nav-nav-bar-links {
            width: auto;
            height: auto;

            >ul {
                display: flex;
                gap: 30px;
                list-style: none;
                margin: 0;
                padding: 0;
                position: relative;
            }

            ul li {
                position: relative;
            }

            ul li a {
                font-size: 1.1rem;
                color: #181818;
                text-decoration: none;
                font-weight: 500;
                display: inline-block;
                padding: 8px 0;
            }

            ul li a:hover {
                color: #5b2525;
            }

            Dropdown container
            .dropdown {
                position: absolute;
                top: 40px;
                left: 0;
                background: #f9f9f9;
                border-radius: 12px;
                overflow: hidden;
                opacity: 0;
                pointer-events: none;
                transform-origin: top center;
                min-width: 160px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
            }

            .dropdown a {
                display: block;
                padding: 10px 16px;
                color: #181818;
                font-size: 15px;
                transition: all 0.3s ease;
            }

            .dropdown a:hover {
                background: #2e2e2e;
                color: #5b2525;
            }

        }

        .d-nav-cta{
            width: auto;
            height: auto;

            a{
                padding: 10px 20px;
                color: #181818;
                background: linear-gradient(90deg, #d6b13a, #e4c45a);
                border-radius: 15px;
                border: none;
            }
        }
    }
} */

.mobile-navbar {
    display: none;
}

@media only screen and (max-width:768px) {
    body{
        cursor: default;
    }

    .cursor-inner, .cursor-outer{
        display: none;
    }

    .navigation-bar {
        display: none;
    }

    .mobile-navbar {
        display: block;
    }
}

/* nav bar */


/* cta section */
.cta-section {
    width: 100%;
    height: auto;
    min-height: 600px;
    background-image: url(/assets/images/cta-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;


    .cta-container {
        width: 100%;
        height: 100%;
        min-height: 100%;
        /* padding: 80px 0; */
        /* max-width: 1400px; */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* margin: 70px 0; */
        /* background: linear-gradient(-90deg, #5b2525, #84303095); */

        .logo {
            width: auto;
            margin-bottom: 30px;

            img {
                width: 180px;
            }
        }

        .cta-body {
            width: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;

            h2 {
                font-size: 3.5rem;
                line-height: 4rem;
                margin-bottom: 15px;
                font-weight: 400;
                color: #f9f9f9;
                font-family: "Playfair Display", serif;
                font-style: italic;
                margin-bottom: 20px;
            }

            p {
                font-size: 1.4rem;
                margin-bottom: 30px;
                color: #fafafa;
                max-width: 850px;
                text-align: center;
            }

            .cta-buttons {
                width: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 25px;

                .cta-primary {
                    text-decoration: none;
                    background: linear-gradient(90deg, #d6b13a, #e4c45a);
                    padding: 10px 25px;
                    color: #181818;
                    font-size: 1rem;
                    border-radius: 8px;
                    font-weight: 500;
                    /* box-shadow: 0px 5px 20px #d6b13a30; */
                    transition: all .5s ease-in-out;

                    &:hover {
                        box-shadow: 0px 5px 20px #d6b13a80;
                        /* transform: scale(1.1); */
                    }
                }

                .cta-secondary {
                    background: #ffffff60;
                    backdrop-filter: blur(5px);
                    padding: 10px 25px;
                    color: #f9f9f9;
                    font-size: 1rem;
                    border-radius: 8px;
                    font-weight: 500;
                    transition: all .5s ease-in-out;

                    &:hover {
                        box-shadow: 0px 5px 20px #f9f9f970;
                    }
                }
            }
        }
    }

}

@media only screen and (max-width:768px) {
    .cta-section {

        .cta-container {
            margin: 80px 0;
            padding: 0 20px;

            .logo {
                img {
                    width: 150px;
                }
            }

            .cta-body {
                text-align: center;

                h2 {
                    font-size: 2rem;
                    line-height: 2.5rem;
                }

                p {
                    font-size: 1rem;
                }
            }

            .cta-buttons {
                flex-wrap: wrap;

                a {
                    width: 100%;
                    display: block;
                }
            }
        }
    }
}

/* cta section */


/* complete footer section */
.footer-section {
    width: 100%;
    height: auto;
    background-color: #5b2525;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;

    /* newsletter section */
    .newsletter-section {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .newsletter-container {
            width: 100%;
            max-width: 1400px;
            height: auto;
            display: flex;
            align-items: center;
            gap: 30px;
            justify-content: space-between;
            padding: 50px 0;

            .news-left,
            .news-right {
                width: 50%;
                height: auto;
            }

            .news-left {
                h3 {
                    font-size: 2.5rem;
                    line-height: 3rem;
                    margin-bottom: 20px;
                    color: #f9f9f9;
                }

                p {
                    font-size: 1.1rem;
                    line-height: 1.5rem;
                    color: #fafafa;
                }
            }

            .news-right {

                form {
                    width: 100%;
                    height: auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 20px;

                    input {
                        padding: 15px 30px;
                        border-radius: 12px;
                        width: 60%;
                        height: auto;
                        background-color: #ffffff60;
                        border: 0.5px solid #f9f9f980;
                        transition: all .5s ease-in-out;
                        position: relative;

                        /* ::placeholder{
                            color: #f9f9f9;
                        } */
                    }

                    input:focus {
                        background-color: #ffffff60;
                        border: 0.5px solid #f9f9f980;
                    }

                    input::placeholder {
                        color: #fdfdfd;
                        font-size: 1.1rem;
                    }

                    /* ::after{
                        content: "We respect your privacy.";
                        position: absolute;
                        bottom: 0px;
                        left: 0;
                        color: #fafafa70;
                        font-size: 14px;
                        margin-top: 15px;
                    } */

                    .news-btn {
                        padding: 15px 30px;
                        border-radius: 12px;
                        background: linear-gradient(90deg, #d6b13a, #e4c45a);
                        color: #181818;
                        font-size: 1.1rem;
                        font-weight: 500;
                        border: none;
                        transition: all .5s ease-in-out;

                        &:hover {
                            box-shadow: 5px 5px 20px #d6b13a50;
                        }
                    }
                }

            }
        }
    }

    /* newsletter section */

    /* hr */
    .foot-division {
        width: 100%;
        height: 1px;
        border: none;
        background: #f9f9f970;
        margin: 20px 0;
    }

    /* hr */

    .main-footer-section {
        width: 100%;
        max-width: 1400px;
        height: auto;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 20px;

        .foot-child {
            width: auto;
            min-width: 200px;
            max-width: 300px;
            height: auto;
            margin: 40px 0;

            img {
                width: 200px;
                margin-bottom: 15px;
            }

            h3 {
                font-size: 1.3rem;
                color: #f9f9f9;
                margin-bottom: 20px;
            }
        }

        .foot-child:nth-child(1) {
            min-width: 350px;

            p {
                font-size: 1.1rem;
                color: #fafafa;
                margin-bottom: 20px;
            }

            .foot-social {
                width: auto;
                display: flex;
                align-items: center;
                justify-items: center;
                gap: 20px;

                a {
                    color: #f9f9f9;
                    font-weight: 500;
                }
            }
        }

        .foot-child:nth-child(2) {

            .links {
                width: auto;
                display: flex;
                align-items: start;
                justify-content: center;
                gap: 8px;
                flex-direction: column;

                a {
                    color: #fafafa;
                    font-size: 1rem;
                }
            }
        }

        .foot-child:nth-child(3) {
            ul>li {
                list-style: none;
                margin-bottom: 8px;
                color: #fafafa;
            }
        }

        .foot-child:nth-child(4) {
            ul>li {
                list-style: none;
                color: #fafafa;
                margin-bottom: 8px;
            }

            ul {
                margin-bottom: 30px;
            }


            ul>li>a {
                color: #fafafa;

                i {
                    color: #fafafa;
                }
            }

            .getintouch-btn {
                width: auto;
                padding: 10px 20px;
                color: #181818;
                background: #fafafa;
                border-radius: 12px;
            }
        }

    }

    .footer-copyright {
        width: 100%;
        height: auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;

        .copy-right {
            width: 50%;
            height: auto;
        }

        .copy-left {
            width: 70%;
            height: auto;
        }

        .copy-right {
            display: flex;
            align-items: end;
            justify-content: end;
        }

        .copy-left {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;

            p {
                color: #fdfdfd;
            }

            a {
                color: #fafafa;
                margin-left: 30px;
            }


        }

        .copy-right {
            p {
                color: #fafafa;
                text-decoration: none;

                a {
                    color: #fafafa;
                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .footer-section {
        padding: 10px;
        flex-direction: column;

        .newsletter-section {
            padding: 0;

            .newsletter-container {
                flex-wrap: wrap;

                .news-left,
                .news-right {
                    width: 100%;

                    h3 {
                        font-size: 2rem;
                        line-height: 2.5rem;
                    }

                    >p {
                        font-size: 1rem;
                        line-height: 1.5rem;
                    }

                    form {
                        gap: 10px;

                        input {
                            width: 60%;
                        }

                        button {
                            width: 40%;
                            font-size: 1rem;

                            i {
                                display: none;
                            }
                        }
                    }
                }
            }
        }

        .main-footer-section {
            gap: 30px;
            justify-content: start;
            flex-wrap: wrap;

            .foot-child:nth-child(1) {
                margin-top: 30px;
            }

            .foot-child:nth-child(2),
            .foot-child:nth-child(3),
            .foot-child:nth-child(4) {
                margin: 0;
                width: auto;
                min-width: 100px;
            }

            .foot-child:nth-child(4) {
                margin-bottom: 30px;
            }

            .foot-child {

                >img {
                    width: 150px;
                }

                >p {
                    font-size: 1rem !important;
                    line-height: 1.5rem !important;
                }

                >h3 {
                    font-size: 1.3rem !important;
                }
            }

        }

        .footer-copyright {
            flex-wrap: wrap;
            /* margin: 30px 0; */
            gap: 20px;

            .copy-right,
            .copy-left {
                width: 100%;
                height: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                /* gap: 30px; */
            }

            .copy-left {
                text-align: center;
                /* background-color: #181818; */

                .term-part {
                    margin-top: 20px;
                    width: 100%;
                    height: auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 15px;
                }
            }
        }
    }
}

/* complete footer section */


/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* allows clicks only on buttons themselves */
}

/* WhatsApp Floating Button */
.whatsapp-float {
  pointer-events: auto;
  background-color: #25D366;
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebc5a;
}

/* Back to Top Button */
.back-to-top {
  pointer-events: auto;
  background-color: #111;
  color: #fff;
  font-size: 26px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: #e63946;
  transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    left: 15px;
    right: 15px;
  }

  .whatsapp-float, .back-to-top {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
