* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000;
    font-family: "Lato", sans-serif;
}

html {
    scroll-behavior: smooth;
}

h1,
.h1 {
    font-size: 3.428rem;
    line-height: 1.1;
    color: #000;
    letter-spacing: -0.025em;
    margin: 0.5em 0;
    font-weight: 400;
    letter-spacing: .065em;
}

h2,
.h2 {
    font-size: 2.571rem;
    line-height: 1.166;
    letter-spacing: 0;
    margin: 2.6rem 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .065em;
}

h3,
.h3 {
    font-weight: 600;
    font-size: 2.142rem;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #000;
    margin: 2.6rem 0;
}

p {
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    line-height: 25px;
}

a {
    font-family: "Lato", sans-serif;
    text-decoration: none;
    color: #000;
}

span,
nav {
    font-family: "Lato", sans-serif;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: .9375rem;
    padding-right: .9375rem;
    width: 100%;
}


@media (min-width: 768px) {

    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container {
        max-width: 1320px;
    }
}

@media (min-width: 1600px) {

    .container {
        max-width: 105rem;
    }

}

strong {
    font-weight: 600;
}

.success-message {
    display: none;
    margin-top: 2rem;
}

.submit-btn button {
    color: #fff;
    background: #333333;
    padding: 15px 0;
    width: 100%;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid transparent;
    letter-spacing: 2px;
    font-weight: 600;
}

.submit-btn button:hover {
    background: #fff;
    color: #333333;
    border-color: #333333;
}

.section-head h2 {
    font-size: 2.8rem;
    margin: 0;
    text-transform: uppercase;
    font-family: "Libertinus Sans", sans-serif;
    letter-spacing: 0;
    color: #BDA588;
    font-weight: 400;
}

.section-head h2 span {
    color: #BDA588;
}

.section-head>div {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #333333;
    margin-bottom: 20px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.section-head>div img {
    width: 11px;
}

.section-head p {
    color: #333333;
    margin-top: 10px;
}

.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 35px;
    margin-top: 40px;
    border-top: 1px solid #FFFFFF1A;
    padding-top: 40px;
}

.about-right .about-right-item:nth-child(2) img {
    width: 55px;
}

.about-right-item h3 {
    margin: 8px 0;
    font-family: "Lato", sans-serif;
    color: #333333;
    letter-spacing: 0;
    font-size: 32px;
    font-weight: 400;
}

.about-right-item p {
    color: #333333;
    opacity: 0.7;
}

.about-right-item img {
    width: 50px;
}

#header {
    height: 100px;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    position: absolute;
    width: 100%;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

#header .register-btn {
    background: #000;
    color: #fff;
    border-color: transparent;
}

#header .register-btn:hover {
    background: #fff;
    color: #000;
}

.logo img {
    width: 150px;
}

#header p {
    color: white;
}

.call-to-action-btns {
    display: flex;
    gap: 15px;
}

.register-btn {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 30px;
    font-size: 14px;
    gap: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

#header .register-btn:hover img {
    filter: invert(1);
}

.register-btn img {
    max-width: 19px;
    width: 100%;
}

.register-btn:hover img {
    filter: invert(1);
}

.header-menu ul {
    display: flex;
    list-style-type: none;
    gap: 40px;
}

.header-menu ul li a {
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: #1E3F71;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: #1E3F71;
}

.white-bg {
    color: #333333;
    border: 1px solid #333333;
    transition: background-color 0.3s ease;
}

.white-bg:hover {
    background-color: #333333;
    color: #fff;
}

.black-bg {
    background: #333333;
    color: #fff;
    transition: background-color 0.3s ease;
    border: 1px solid transparent;
}

.black-bg:hover {
    background: #fff;
    color: #333333;
    border-color: #333333;
}


.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #F4FAFF;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s ease;
    z-index: 99;
}

.sticky-bottom-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sticky-bottom-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

.sticky-bottom-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 1;
}

.sticky-bar-p {
    color: #000;
    font-size: 23px;
}

.sticky-bar-p span {
    color: #000;
}

.sticky-bottom-bar .dynamic-price {
    color: #000 !important;
    font-weight: 600;
}

.sticky-bottom-bar.hidden-bottom-bar {
    transform: translateY(100%);
}

.sticky-bottom-left img {
    width: 128px;
}

.sticky-bottom-content .register-btn {
    width: 270px;
    background: #AA8D74;
    color: #fff;
}

.sticky-bottom-content .register-btn:hover {
    background: #fff;
    color: #AA8D74;
}

.sticky-bottom-content {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
    justify-content: space-between;
}

.side-contact-bar.hidden-side-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(60px);
}

.side-contact-bar span {
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #161616;
    text-align: center;
}

.side-contact-bar .side-btn:nth-child(2) {
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

.side-contact-bar .side-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    padding: 15px 0;
}

.side-contact-bar .side-btn img {
    width: 28px;
    height: 28px;
}

.side-contact-bar {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 950;
    padding: 5px 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.side-contact-bar.hidden-side-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(60px);
}

.side-contact-bar span {
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10px;
    color: #161616;
    text-align: center;
}

.side-contact-bar .side-btn:nth-child(2) {
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

.side-contact-bar .side-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    padding: 15px 0;
}

.side-contact-bar .side-btn img {
    width: 28px;
    height: 28px;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

#banner::before {
    content: "";
    position: absolute;
    width: 54%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 51%) 100%);
    z-index: 1;
    top: 0;
    left: 0;
}

@media (min-resolution: 192dpi) {
    #banner {
        height: 100vh;
        width: 100%;
        background: url(images/banner.webp) center center / cover no-repeat;
        background-position: center center;
    }
}

#banner .container {
    height: 100%;
    position: relative;
    z-index: 2;
}

.banner-section {
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-inner {
    padding: 35px 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.banner-left {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.about-above-btns {
    margin-top: 33px;
}

.about-above-btns>div:first-child {
    width: 465px;
}

.about-above-btns>div a {
    width: 100%;
}


.banner-left h1 {
    font-size: 3rem;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 25px;
    max-width: 54%;
    line-height: 1.3;
    font-family: "Libertinus Sans", sans-serif;
    font-weight: 400;
}

.banner-left h1 strong {
    font-size: 2.5rem;
    color: #fff;
}

#callNowPopup h3 {
    font-size: 1.5rem !important;
}

.banner-left nav {
    font-size: 1.2rem;
    color: #fff;
    font-family: "Lato", sans-serif;
    margin-top: 30px;
    font-weight: 400;
}

.banner-left .main-heading-span {
    font-size: 1.2rem;
    color: #fff;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
}

.dynamic-price {
    font-family: "Libertinus Sans", sans-serif;
}

.dynamic-price {
    color: white !important;
}

.banner-left .register-btn {
    max-width: 350px;
    margin-top: 40px;
    background: #F3F4F1;
    color: #00263A;
    border-color: transparent;
}

.banner-left .register-btn:hover {
    background: #00263A;
    color: #F3F4F1;
    border-color: #00263A;
}

.animated-scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translate(-50%);
}

.scroll-circle {
    width: 38px;
    height: 62px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.animated-arrow-container {
    position: relative;
    width: 30px;
    height: 40px;
    overflow: hidden;
}

.moving-arrow {
    position: absolute;
    width: 20px;
    height: 28px;
    left: 50%;
    margin-left: -10px;
    animation: arrowFlow 2.5s ease-in-out infinite;
}

.moving-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes arrowFlow {
    0% {
        top: -25px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 45px;
        opacity: 0;
    }
}

.scroll-caption {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 0 !important;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input {
    width: 100%;
    height: 45px;
    border: 1px solid #E2E2E2;
    border-radius: 3px;
    padding-left: 15px;
    color: #161C2D;
    font-size: 12px;
    margin-top: 4px;
}

.form-group input::placeholder {
    color: #808080;
    font-style: italic;
}

.form-group label {
    font-size: 12px;
    color: #000;
}

form textarea {
    height: 4.5rem !important;
    border: 1px solid #E2E2E2;
    width: 100%;
    padding-left: 15px;
    padding-top: 15px;
    margin-top: 3px;
    font-size: 12px;
}

#about {
    position: relative;
    padding: 85px 15px;
    background-color: #F6F6F6;
    background-image: url('images/lines-bg.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#about::before {
    content: "";
    position: absolute;
    background-image: url(images/abt-shape.webp);
    left: 0px;
    top: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: center center;
}

#about .section-head>div {
    color: #00263A;
    text-transform: uppercase;
}

.about-content {
    z-index: 1;
    position: relative;
}

.about-left {
    width: 100%;
    display: flex;
}

.about-left>div:first-child {
    width: 65%;
}

.about-left>div:nth-child(2) {
    width: 35%;
}

.about-left>div:nth-child(2) img {
    width: 100%;
}

#about .section-head {
    position: relative;
    padding-bottom: 35px;
}

.about-details p {
    margin-bottom: 20px;
    padding-right: 60px;
    color: #333333;
}

#location {
    margin-top: 130px;
}

#location-map {
    padding: 70px 0 0;
}

.map-img {
    width: 100%;
    margin-top: 40px;
}

#signs {
    background: #F5F5F5;
    background-image: url(images/newsletter-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#signs .section-head {
    text-align: center;
    margin: 0;
}

#signs .container {
    display: flex;
    justify-content: center;
    padding: 70px 0;
}

#signs .container>div {
    background: linear-gradient(160.97deg, #FFFFFF 12.82%, #F2F2F2 100.49%);
    max-width: 80%;
    padding: 50px 30px;
    width: 100%;
}

.sign-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #0000001A;
    border-bottom: 1px solid #0000001A;
}

#signs .submit-btn {
    text-align: center;
}

#signs .submit-btn button {
    max-width: 300px;
    margin-top: 30px;
}

#map {
    flex: 1;
    width: 100%;
    height: 700px;
    position: relative;
}

#discover-projects {
    padding: 70px 15px;
    background-color: #FEFEFF;
    background-repeat: no-repeat, repeat;
    background-position: center;
    background-size: 30% auto, contain;
    background-attachment: fixed, scroll;
    position: relative;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
}

.project-grid .project:nth-child(even) .project-detail {
    padding-left: 0;
    padding-right: 35px;
}

.project h3 {
    font-weight: 400;
    font-size: 32px;
    text-transform: capitalize;
    margin: 20px 0 20px 0;
    letter-spacing: 0;
    color: #041F3D;
    font-family: "Libertinus Sans", sans-serif;
}

.project {
    position: relative;
    display: flex;
    margin-top: 50px;
}

.project:nth-child(1) {
    margin-top: 10px;
}

.project-detail p {
    max-height: none !important;
    color: #555555;
}

.project-detail p::after {
    display: none !important;
}

.project-detail-divs div div span {
    font-weight: 600;
    color: #333333;
}

.project-detail-divs>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 35px;
}

.project-detail .register-btn:hover img {
    filter: brightness(0) invert(1);
}

.property-price,
.property-size,
.property-bed {
    display: flex;
    gap: 11px;
    align-items: center;
}

.project-detail {
    width: 50%;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}

.project img {
    width: 100%;
}

.project-detail img {
    max-width: 20px !important;
}

.project-detail .property-types {
    display: flex;
    gap: 10px;
}

.project-detail .property-types p {
    display: block;
    padding: 5px 15px;
    background-color: #EDEAE7;
    border-radius: 20px;
    min-width: 100px;
    color: #AC8D68;
    text-align: center;
    font-size: 12px;
    position: inherit;
    left: 20px;
    top: 20px;
    font-weight: 600;
}

.project .price {
    display: flex;
    margin-top: 20px;
    gap: 30px;
    padding: 0 20px;

}

.project .call-to-action-btns {
    margin-top: 40px;
}

.project.hidden {
    display: none !important;
}

.load-more-container {
    text-align: center;
    margin-top: 70px;
}

.load-more-btn {
    background: #555555;
    color: #fff;
    border: 0.05rem solid;
    padding: 15px 40px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.load-more-btn:hover {
    border: 0.05rem solid;
    background: transparent !important;
    border-color: #555555;
    color: #555555;
}

.load-more-btn.hidden {
    display: none;
}

.project.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

#invest-damac {
    background-color: #F6F6F6;
    background-image: url(images/line-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

#invest-damac .section-head>div {
    color: #E7E7E5;
}

#invest-damac .container {
    padding: 80px 40px;
}

.invest-first {
    display: flex;
    gap: 30px;
}

.invest-first-left {
    width: calc(60% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.invest-first-left .section-head p {
    max-width: 75%;
}

.invest-first-left .register-btn {
    max-width: 300px;
    margin-bottom: 20px;
}

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.invest-grid-item {
    background-color: #FFFFFF05;
    padding: 30px;
    border-radius: 5px;
    border-bottom: 2px solid #E7E7E5;
}

.invest-grid-item img {
    max-width: 40px;
    width: 100%;
}

.invest-grid-item div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.invest-grid-item span {
    color: #E7E7E5;
}

.invest-grid-item p {
    margin-top: 20px;
    color: #ffffff;
    opacity: 0.7;
}

#location {
    margin-top: 130px;
}

.map {
    width: 100%;
    height: 804px;
    background: url('images/map.webp');
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    background-position: bottom;
    background-repeat: no-repeat;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

#faq {
    background-color: #fff;
    padding: 70px 0;
    position: relative;
}

#faq .faq-con {
    border-radius: 7px;
}

#faq .section-head>div span {
    color: #fff;
}

.faq {
    margin: 50px 0 0;
}

.faq-item {
    border: 1px solid #00000012;
    margin-bottom: 4px;
}

.faq-question {
    cursor: pointer;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #E7E7E5;
    text-transform: uppercase;
    border-bottom: 1px solid #00000012;
}

.faq-item.active .faq-answer {
    display: block;
    opacity: 1;
}

.faq-answer ul {
    margin: 10px 0 10px 20px;
}

.faq-question span {
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    letter-spacing: 2px;
}

.faq-icon {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px 25px;
    line-height: 1.5;
    font-size: 16px;
    transition: max-height 0.4s ease;
    opacity: 0;
    color: #333333;
}

.faq-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-support {
    display: flex;
    gap: 10px;
}

.support-img img {
    width: 100%;
    max-width: 22px;
}

.faq-support div nav:nth-child(1) {
    color: #353535;
}

.faq-support div nav:nth-child(2) {
    color: #ffffffb1;
    margin-top: 5px;
}



.project {
    position: relative;
    overflow: hidden;
}

.project .project-swiper {
    width: 50%;
    position: relative;
}

.new-launch {
    padding: 2px 16px;
    background-color: #EDEAE77A;
    border-radius: 20px;
    min-width: 100px;
    color: #000;
    text-align: center;
    font-size: 12px;
    position: absolute;
    left: 20px;
    top: 20px;
    font-weight: 500;
}

.project-detail .call-to-action-btns div {
    width: 100%;
}

.project .project-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.project .project-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project .swiper-button-next,
.project .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.project .swiper-button-next:after,
.project .swiper-button-prev:after {
    font-size: 12px;
}

.project .swiper-pagination {
    bottom: 10px;
}

#vist-area {
    background: url(images/footer-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

#vist-area .container {
    display: flex;
    justify-content: center;
    padding: 70px 0;
    z-index: 1;
    position: relative;
}

#vist-area .container>div {
    background: #FFFFFFF5;
    max-width: 80%;
    padding: 50px 30px;
    width: 100%;
}

#vist-area .form-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

#vist-area .section-head {
    text-align: center;
    margin: 0;
}

#visitPop .submit-btn {
    text-align: center;
    margin-top: 30px;
}

#visitPop .submit-btn button {
    max-width: 400px;
}

#vist-area .section-head p {
    color: #353535;
}

.footer-flex {
    display: flex;
    gap: 10px;
}

.footer-flex .form-group {
    width: 50%;
}

.visit-content {
    width: 100%;
    padding: 0;
}

.visit-content .section-head h2 {
    display: none;
}

.visit-content .section-head p {
    display: none;
}

#bottom-bar {
    background: #333333;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    padding: 15px 0;
}

#bottom-bar p {
    text-align: center;
    color: #fff;
    font-size: 12px !important;
    margin-bottom: 0;
}

#bottom-bar p strong {
    color: #fff;
}

#bottom-bar p:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 10px;
}

#bottom-bar .container {
    text-align: center;
}

#bottom-bar a {
    margin-top: 10px;
    text-align: center;
    font-size: 12px !important;
    color: #fff;
    font-style: underline;
    text-decoration: underline;
}

.autoPopup {
    border-radius: 10px;
    padding: 40px;
    background: #fff;
    max-width: 500px;
    position: relative;
}

#contactPopup .section-head h2,
#brochurePopup .section-head h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    text-align: center;
}

#contactPopup .section-head p,
#brochurePopup .section-head p {
    text-align: center;
}

.autoPopup-form {
    background: white;
    border-radius: 30px;
}

#autoPop,
#brochureFormPopup {
    margin-top: 20px;
}

.icon {
    display: inline-block;
}

.mob-only-flex {
    display: none !important;
}

.tab-only {
    display: none;
}

.desktop-tab {
    display: block;
}

@media (max-width: 1600px) {
    .banner-inner {
        height: 45rem;
    }
}

@media (max-width: 1440px) {
    .banner-left h1 {
        max-width: 100%;
    }

    .banner-left {
        width: 90%;
    }

    .banner-left .main-heading-span {
        font-size: 1.1rem;
    }
}

@media (max-width: 1200px) {
    .project div span {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    p {
        font-size: 14px;
    }

    #header .container {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
        z-index: 1000;
    }

    .banner-section {
        background: none;
    }

    .tab-only {
        display: block;
    }

    .desktop-tab {
        display: none;
    }

    .header-menu.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .header-menu ul {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    #signs .container>div {
        max-width: 100%;
    }

    .header-menu ul li a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #071C35;
    }

    .sticky-bottom-left,
    .sticky-bottom-left-btn,
    .sticky-bar-head {
        display: none !important;
    }

    .sticky-bottom-content {
        justify-content: center;
    }

    .sticky-bottom-content .register-btn {
        width: 170px;
    }

    .desktop-cta {
        display: none;
    }

    .register-btn {
        font-size: 12px;
    }

    .register-btn img {
        max-width: 13px;
    }

    .banner-left h1 {
        max-width: 100%;
    }

    .logo img {
        max-width: 130px;
    }

    .banner-inner {
        justify-content: center;
        height: initial;
    }

    .sticky-socials {
        display: flex !important;
        width: 100%;
        gap: 10px;
    }

    .sticky-socials div:first-child {
        width: 50%;
    }

    .sticky-socials div:nth-child(2) {
        width: 50%;
        display: flex;
    }

    .sticky-socials div:nth-child(2) a {
        display: flex;
        background: #26D366;
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
        gap: 6px;
        border-radius: 8px;
    }

    .sticky-socials div:nth-child(1) a {
        display: flex;
        background: #50AFE4;
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
        gap: 6px;
        border-radius: 8px;
    }

    .sticky-socials a img {
        max-width: 23px;
        width: 100%;
    }

    .sticky-socials a p {
        color: #fff;
    }

    .banner-left p {
        text-align: center;
    }

    #faq .section-head>div {
        color: #000;
    }

    .banner-left>div {
        text-align: center;
    }

    .banner-left .call-to-action-btns {
        justify-content: center;
    }

    .banner-left {
        justify-content: center;
        width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-left {
        width: 100%;
    }

    .section-head h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-above-btns {
        display: none;
    }

    .section-head>div {
        justify-content: center;
    }

    .section-head p {
        text-align: center;
    }

    .project-detail {
        margin-top: 22px;
        padding-left: 0;
        padding-bottom: 15px;
        width: 100%;
    }

    .about-details p {
        text-align: center;
    }

    .project-detail-divs {
        display: grid;
        gap: 10px;
    }

    .about-right {
        gap: 25px 35px;
    }

    .about-right-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .project .project-swiper {
        width: 100%;
    }

    .project {
        flex-direction: column;
    }

    .project-detail .call-to-action-btns {
        flex-direction: column;
    }

    .project-detail .call-to-action-btns a {
        width: 100%;
    }

    .project-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .project-grid .project:nth-child(even) {
        flex-direction: column-reverse;
    }

    .invest-first {
        flex-direction: column-reverse;
    }

    .invest-first-left {
        width: 100%;
        align-items: center;
    }

    .invest-first-left .section-head h2 {
        text-align: center;
    }

    .invest-first-left .section-head p {
        max-width: 100%;
        text-align: center;
    }

    .invest-first-left .register-btn {
        margin-top: 20px;
    }

    .invest-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map {
        height: 68vh;
        background-repeat: no-repeat;
    }

    #map {
        height: 450px;
    }

    .map {
        background-position: 45%;
    }

    #faq {
        margin-top: 55px;
    }

    #faq .section-head h2 {
        color: #000;
    }

    #faq .section-head>div span {
        color: #000;
    }

    #faq .section-head>div img {
        filter: invert(0);
    }

    .faq-top {
        justify-content: center;
    }

    .faq-support,
    .faq-top .call-to-action-btns {
        display: none;
    }

    .faq {
        margin-top: 30px;
    }

    .form-container {
        flex-direction: column-reverse;
    }

    #vist-area .container>div {
        max-width: 100%;
    }

    .visit-content {
        width: 100%;
        padding: 0;
    }

    .visit-content .section-head h2 {
        display: block;
        font-size: 22px;
        margin-bottom: 30px;
    }

    #vist-area {
        margin-top: 65px;
    }

    #vist-area .container>.section-head {
        display: none;
    }

    #vist-area .container {
        padding: 45px;
    }

    .visit-content {
        margin-top: 45px;
    }

    #bottom-bar {
        padding: 10px;
    }

    #bottom-bar p:nth-child(2) {
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 10px !important;
        line-height: 1.4;
    }
}

@media (max-width: 767px) {
    .header h1 {
        font-size: 2rem;
    }

    #header .call-to-action-btns {
        display: none;
    }

    #header {
        height: 80px;
    }

    .about-right .about-right-item:nth-child(2) img {
        width: 44px;
    }

    .about-right {
        grid-template-columns: 1fr 1fr;
    }

    .project-detail-divs>div {
        grid-template-columns: 52% 39%;
    }

    #about {
        padding: 50px 15px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 1.6rem;
    }

    .about-left {
        flex-direction: column;
    }

    .about-left>div:first-child {
        width: 100%;
    }

    .faq-question span {
        font-size: 12px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .about-left>div:nth-child(2) {
        width: 100%;
    }

    #location-map {
        padding: 45px 0 0;
    }

    .side-contact-bar {
        display: flex !important;
        right: 0;
        top: auto;
        bottom: 150px;
        transform: translateY(0);
        width: 45px;
        padding: 0;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .side-contact-bar span {
        display: none;
    }

    .side-contact-bar .side-btn {
        padding: 12px 0;
        width: 100%;
        border: none !important;
    }

    .side-contact-bar .side-btn img {
        width: 22px;
        height: 22px;
    }

    .side-contact-bar.hidden-side-bar {
        transform: translateX(100%);
        opacity: 1;
    }

    .mob-only-flex {
        display: flex !important;
    }

    .desk-only {
        display: none !important;
    }

    .project-grid .project:nth-child(even) .project-detail {
        padding-right: 0;
    }

    .project-detail {
        padding-right: 0;
    }

    .invest-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .banner-left h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .invest-grid-item:nth-child(1) {
        border-top: 1px solid #E3E3E3;
        padding-top: 30px;
    }

    .project-detail p {
        position: relative;
        line-height: 1.5;
        max-height: calc(1.5em * 2);
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .sticky-bottom-video {
        display: none;
    }

    .property-types {
        position: inherit;
    }

    .invest-grid-item {
        border-bottom: 1px solid #E3E3E3;
        padding: 20px;
        padding-bottom: 30px;
        border-radius: 0;
    }

    .map {
        height: 30vh;
        background-size: cover;
    }

    #bottom-bar {
        height: auto;
        padding: 20px 0;
    }

    #contactPopup .section-head p,
    #brochurePopup .section-head p {
        display: none;
    }

    .banner-left .register-btn {
        margin-top: 9px;
    }

    #vist-area .section-head p {
        max-width: 100%;
    }

    .project-detail .property-types {
        z-index: 2;
        display: flex !important;
        background: transparent;
        padding: 0;
    }

    .project-detail .property-types p:nth-child(2) {
        color: #86B186;
    }

    .sign-flex {
        grid-template-columns: 1fr;
    }

    #signs .container {
        padding: 70px 15px 70px;
    }

    .footer-flex {
        flex-direction: column;
    }

    .footer-flex .form-group {
        width: 100%;
    }

    .faq {
        padding-bottom: 58px;
    }

    .about-right-item p {
        text-align: center;
    }

    #discover-projects {
        padding: 50px 15px;
    }

    #invest-damac .container {
        padding: 30px 20px 75px;
    }

    .about-right-item h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-top: 18px;
    }

    .about-right-item:last-child h3 {
        margin-top: 10px;
    }

    .about-right {
        margin-top: 25px;
    }

    .section-head>div {
        text-align: center;
        font-size: 12px;
    }

    .about-right-item img {
        width: 45px;
    }

    .about-details p {
        padding-right: 0;
    }

    .banner-left .call-to-action-btns {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .banner-left .main-heading-span {
        text-transform: none;
        display: none;
    }

    .banner-left {
        width: 100%;
    }

    .faq-top {
        justify-content: center;
    }

    .visit-content .section-head p {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    #map {
        height: 350px;
    }

    #vist-area {
        margin-top: 0;
    }

    #faq {
        padding: 0;
    }

    .visit-content .booking-form-area {
        padding: 0;
    }

    .visit-content {
        margin-top: 0;
    }

    #vist-area .form-container {
        margin-top: 0;
    }

    #vist-area .container {
        padding: 45px 15px;
    }

    #visitPop .form-group input {
        background-color: #FAFAFA;
        border: none;
        border-bottom: 1px solid #57575773;
        border-radius: 0;
    }
}

.hidden {
    display: none !important;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.success-message {
    display: none;
    color: #28a745;
    margin-top: 10px;
    font-weight: bold;
}

.hidden-bottom-bar {
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-bottom-bar {
    transform: translateY(0);
}

.mobile-menu-toggle {
    z-index: 10000;
    position: relative;
}

body.menu-open .mobile-menu-toggle {
    position: fixed;
    top: 25px;
    right: 20px;
}

body.menu-open {
    overflow: hidden;
}

.header-menu.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    padding-top: 80px;
}

@media (max-width: 991px) {
    .sticky-bottom-bar {
        display: none !important;
    }

    #bottom-bar {
        padding-bottom: 20px !important;
        margin-bottom: 0 !important;
    }
}

#callNowPopup.premium-modal {
    max-width: 450px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.popup-content-wrapper {
    padding: 40px 30px;
    background: #fff;
    text-align: center;
}

.popup-header h3 {
    font-family: "Libertinus Sans", sans-serif;
    font-size: 2.2rem;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.popup-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.popup-header .highlight-text {
    color: #BDA588;
    font-weight: 700;
    border-bottom: 2px solid #BDA588;
}

#callNowPopup .form-group {
    text-align: left;
    margin-bottom: 20px;
}

#callNowPopup .form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

#callNowPopup .input {
    height: 50px;
    background: #F9F9F9;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.3s ease;
}

#callNowPopup .input:focus {
    background: #fff;
    border-color: #BDA588;
    outline: none;
    box-shadow: 0 0 0 3px rgba(189, 165, 136, 0.1);
}

.btn-gold-gradient {
    background: #333;
    color: #fff;
    border: none;
    height: 55px;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-gold-gradient:hover {
    background: #BDA588;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.privacy-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 20px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .popup-content-wrapper {
        padding: 30px 20px;
    }

    .popup-header h3 {
        font-size: 1.8rem;
    }

    #brochurePopup input,
    #contactPopup input,
    #autoPop input,
    .form-group input {
        font-size: 16px !important;
    }
}

.footer-links {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-links .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

#amenities-gallery {
    padding: 10px 0 30px 0;
    background: #fff;
}

#amenities-gallery .section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

#amenities-gallery .section-head .justify-center {
    justify-content: center;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.large-card {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.95) 100%);
}

.gallery-text h3 {
    font-family: "Libertinus Sans", sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 400;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-text p {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 0;
}

.gallery-card:hover .gallery-text p {
    opacity: 1;
    transform: translateY(0);
    max-height: 50px;
    margin-top: 5px;
}

.gallery-card:hover .gallery-text h3 {
    color: #BDA588;
}

@media (max-width: 1024px) {
    .gallery-wrapper {
        grid-auto-rows: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .large-card {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-text p {
        opacity: 1;
        transform: translateY(0);
        max-height: auto;
        padding-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
        grid-auto-rows: 250px;
    }

    .large-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-text h3 {
        font-size: 1.5rem;
    }

    #amenities-gallery {
        padding: 25px 0;
    }
}

.invest-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    width: 100%;
}

.invest-cta-container .register-btn {
    min-width: 280px;
    cursor: pointer;
}

.white-bg {
    background-color: #fff;
    color: #333333;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.white-bg:hover {
    background-color: #333333;
    color: #fff;
    border-color: #333333;
}

@media (max-width: 767px) {
    .invest-cta-container {
        margin-top: 30px;
    }

    .invest-cta-container .register-btn {
        width: 100%;
    }
}

#damac-branded {
    padding: 80px 0;
    background-color: #FAFAFA;
}

#damac-branded .section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

#damac-branded .section-head .justify-center {
    justify-content: center;
}

.branded-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.branded-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.branded-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.branded-img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.branded-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.branded-card:hover .branded-img-wrapper img {
    transform: scale(1.08);
}

.brand-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #BDA588;
    padding: 6px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border-left: 3px solid #BDA588;
}

.branded-content {
    padding: 30px;
}

.branded-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.6rem;
    font-family: "Libertinus Sans", sans-serif;
    color: #041F3D;
}

.branded-content p {
    color: #555555;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.branded-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333333;
    transition: color 0.3s ease;
}

.branded-link span {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.branded-link:hover {
    color: #BDA588;
}

.branded-link:hover span {
    transform: translateX(5px);
    color: #BDA588;
}

@media (max-width: 991px) {
    .branded-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #damac-branded {
        padding: 50px 15px;
    }

    .branded-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .branded-img-wrapper {
        height: 220px;
    }
}

#property-quiz {
    padding: 60px 0;
    background-color: #FAFAFA;
}

.quiz-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.quiz-header {
    max-width: 700px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quiz-header .justify-center {
    display: inline-block;
    color: #BDA588;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.quiz-header h2 {
    text-align: center !important;
    margin: 0 0 15px 0 !important;
    font-size: 2.7rem;
    color: #041F3D;
    text-transform: uppercase;
    width: 100%;
}

.quiz-header p {
    text-align: center !important;
    margin: 0 !important;
    color: #555;
    width: 100%;
}

.quiz-progress {
    width: 100%;
    height: 6px;
    background: #EEEEEE;
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 25%;
    background: #BDA588;
    transition: width 0.4s ease;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    text-align: center !important;
    font-size: 1.8rem;
    font-family: "Libertinus Sans", sans-serif;
    color: #041F3D;
    margin-bottom: 30px;
    width: 100%;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.quiz-card {
    border: 2px solid #EEEEEE;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.quiz-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.quiz-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.quiz-card:hover {
    border-color: #BDA588;
    background: #FCFAEF;
    transform: translateY(-5px);
}

.quiz-card.selected {
    border-color: #BDA588;
    background: #FCFAEF;
    box-shadow: 0 8px 20px rgba(189, 165, 136, 0.15);
}

.quiz-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.quiz-actions.dual-actions {
    justify-content: space-between;
}

.quiz-next-btn {
    max-width: 250px;
    opacity: 1;
}

.quiz-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    box-shadow: none;
    transform: none;
}

.quiz-prev-btn {
    background: transparent;
    border: 1px solid #ccc;
    color: #555;
    padding: 0 30px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-prev-btn:hover {
    background: #f5f5f5;
    color: #000;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #EEEEEE;
    border-top: 5px solid #BDA588;
    border-radius: 50%;
    margin: 40px auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.final-step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.final-step-header h3 {
    color: #BDA588;
    margin-bottom: 10px;
    text-align: center !important;
}

.final-step-header p {
    text-align: center !important;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.quiz-form .row {
    margin: 0;
    display: block;
}

.quiz-form .col-sm-12 {
    padding: 0;
}

.quiz-form .form-group {
    margin-bottom: 18px;
    width: 100%;
}

.quiz-form .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.quiz-form .submit-btn {
    margin-top: 25px;
    width: 100%;
}

.quiz-form .btn-gold-gradient {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 767px) {
    #property-quiz {
        padding: 20px 15px;
    }

    .quiz-wrapper {
        padding: 35px 20px;
        width: 100%;
        border-radius: 8px;
    }

    .quiz-header {
        margin-bottom: 25px;
    }

    .quiz-header h2 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }

    .quiz-progress {
        margin-top: 20px;
    }

    .quiz-step h3 {
        font-size: 1.5rem !important;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .quiz-options {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .quiz-card {
        padding: 20px 15px;
    }

    .quiz-actions {
        margin-top: 20px;
    }

    .quiz-actions.dual-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .quiz-prev-btn,
    .quiz-next-btn {
        width: 100%;
        max-width: 100%;
        height: 50px;
    }

    .spinner {
        margin: 20px auto;
    }

    .final-step-header h3 {
        font-size: 1.6rem !important;
    }
}