@font-face {
    font-family: 'Arimo';
    src: url('./fonts/Arimo/Arimo-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cinzel';
    src: url('./fonts/Cinzel/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('./fonts/Lora/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arimo', sans-serif;
    color: #333;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
}

/* ===== HEADER STYLES ===== */
.baalbo-custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: #1a1a1a;
    padding: 0 20px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.baalbo-logo-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.baalbo-logo-section img {
    max-height: 28px;
    width: auto;
    display: block;
}

.baalbo-menu-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    cursor: pointer;
    height: 100%;
}

.baalbo-line {
    height: 2px;
    background-color: #c5a059;
    margin: 3.5px 0;
    border-radius: 2px;
}

.line-1 { width: 28px; }
.line-2 { width: 18px; }
.line-3 { width: 25px; }

@media (min-width: 1025px) {
    .baalbo-custom-header { display: none; }
}

/* ===== HERO SECTION ===== */
.elementor-editor-active .ry-slide-down,
.elementor-editor-active .ry-reveal-up {
    opacity: 1 !important;
    transform: none !important;
}

.ry-slide-down, .ry-reveal-up { will-change: transform, opacity; }

.ry-slide-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease-out;
}
.ry-slide-down.active { opacity: 1; transform: translateY(0); }

.ry-reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease-out;
}
.ry-reveal-up.active { opacity: 1; transform: translateY(0); }

.hero-container {
    width: 100%;
    background-color: #4b3621;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Cinzel', serif;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    aspect-ratio: 430 / 538;
}

.hero-card {
    width: 92%;
    background-color: #fdf5e6;
    border: 2px solid #f1b400;
    border-radius: 15px;
    margin-top: -50px;
    z-index: 10;
    padding: 20px 15px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.4);
}

.hero-card h1 {
    font-size: 25px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 700;
}

.location {
    font-family: 'Arimo', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    color: #333;
}

.info-pill {
    font-family: 'Arimo', sans-serif;
    border: 1px solid #f1b400;
    background: #fff;
    border-radius: 20px;
    padding: 8px 15px;
    margin: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    display: inline-block;
    width: 90%;
}
.info-pill.highlight-pill {
    font-size: 17px;
    font-weight: 900;
    border-width: 1.5px;
}

.price-text {
    font-family: 'Arimo', sans-serif;
    font-size: 18px;
    margin: 20px 0;
    color: #000;
}
.price-text b {
    font-size: 24px;
    font-weight: 900;
}

.single-btn-box {
    width: 85%;
    max-width: 260px;
    margin: 15px auto 10px;
    border: 1.5px solid #000;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
    display: block;
    text-decoration: none;
}

.btn-top-gradient {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: white !important;
    padding: 12px;
    display: block;
    border-bottom: 1.5px solid #000;
    text-align: center;
}

.shrink-text-target {
    display: inline-block;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Arimo', sans-serif;
    animation: shrinkEffect 1.5s ease-in-out infinite;
}

.btn-bottom-white {
    background: #fff;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shrink-icon-target {
    width: 18px;
    display: block;
    animation: shrinkEffect 1.5s ease-in-out infinite;
}

@keyframes shrinkEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

@media screen and (min-width: 768px) {
    .hero-container { display: none; }
}

/* ===== ABOUT SECTION ===== */
.ry-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease-out;
    will-change: transform, opacity;
}
.ry-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.elementor-editor-active .ry-reveal {
    opacity: 1 !important;
    transform: none !important;
}

.about-section {
    background-color: #4b3621;
    padding: 40px 0px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.video-container-main {
    width: 100%;
    height: 380px;
    position: relative;
    background: #000 center/cover no-repeat;
    overflow: hidden;
    margin-bottom: 35px;
    display: block;
}

.video-link-wrapper {
    text-decoration: none;
    display: block;
}

.video-mask-top, .video-mask-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 4;
    pointer-events: none;
}
.video-mask-top {
    top: 0;
    background: linear-gradient(to bottom, #4b3621, transparent);
}
.video-mask-bottom {
    bottom: 0;
    background: linear-gradient(to top, #4b3621, transparent);
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    pointer-events: none;
}

.play-icon-clickable {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    z-index: 10;
    cursor: pointer;
}

.center-play-icon {
    width: 100%;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
}

.video-container-main iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.8);
    border: none;
    z-index: 3;
}

.about-text-box { padding: 0 20px; }
.about-title {
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}
.about-subtitle {
    color: #f1b400;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}
.about-description {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 35px;
    opacity: 0.9;
}

.about-btn-wrapper {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    border: 1.5px solid #000;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.brochure-btn-custom {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: #ffffff !important;
    text-decoration: none;
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-shrink-target {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: aboutShrink 1.5s ease-in-out infinite;
}
@keyframes aboutShrink {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}
.small-download-svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* ===== HIGHLIGHTS SECTION ===== */
.ry-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease-out;
}
.ry-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.highlights-section {
    position: relative;
    width: 100%;
    padding: 50px 15px;
    box-sizing: border-box;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
                center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.hl-title {
    font-family: 'Cinzel', serif;
    color: #f1b400;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.hl-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

.hl-list { text-align: left; margin-bottom: 30px; }

.hl-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hl-item:last-child { border-bottom: none; }

.hl-icon {
    flex: 0 0 45px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
}
.hl-icon img {
    width: 35px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(28%) saturate(1202%) hue-rotate(351deg) brightness(101%) contrast(101%);
}

.hl-text {
    font-size: 14.5px;
    line-height: 1.5;
    color: #fff;
}

.hl-btn-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.hl-btn-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border: 1.5px solid #000;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.hl-btn-link {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: #fff !important;
    padding: 15px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
}

.hl-shrink-text {
    display: inline-block;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    animation: hlShrinkEffect 1.5s ease-in-out infinite;
}

@keyframes hlShrinkEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

.btn-svg {
    width: 14px;
    height: 18px;
    fill: #ffffff;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background-color: #fdf5e6;
    padding: 60px 15px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.gallery-label {
    color: #c5a059;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

.gallery-title {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s;
}

.tab-item.active { color: #c5a059; }
.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #c5a059;
}

.slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.slider-container::-webkit-scrollbar { display: none; }

.slide-card-link {
    min-width: 85%;
    scroll-snap-align: center;
    text-decoration: none;
    display: none;
}
.slide-card-link.show { display: block; }

.slide-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 100%;
}

.slide-card img {
    width: 100%;
    height: auto;
    display: block;
}

.artistic-note {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-size: 10px;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 4px;
}

.nav-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}
.arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #c5a059;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #c5a059;
    background: #fff;
    font-size: 18px;
}

.gal-btn-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 35px auto 0;
    border: 1.5px solid #000000;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.amenities-btn {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: #fff !important;
    border: none;
    padding: 14px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.gal-shrink-text {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    animation: galShrinkEffect 1.5s ease-in-out infinite;
}

@keyframes galShrinkEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* ===== SIGNATURE SECTION ===== */
.elementor-editor-active .ry-reveal-sig {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.ry-reveal-sig {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}
.ry-reveal-sig.active {
    opacity: 1;
    transform: translateY(0);
}

.sig-section {
    background-color: #4b3621;
    padding: 50px 15px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    overflow: hidden;
}

.sig-title {
    color: #f1b400;
    font-size: 23px;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    font-weight: bold;
}

.sig-subtitle {
    color: #fff;
    font-size: 14px;
    margin-bottom: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

.sig-grid {
    display: grid;
    grid-template-areas: "card1 card2" "card3 card3" "card4 card4";
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sig-img-link {
    text-decoration: none;
    display: block;
}
.sig-grid .sig-img-link:nth-child(1) { grid-area: card1; }
.sig-grid .sig-img-link:nth-child(2) { grid-area: card2; }
.sig-grid .sig-img-link:nth-child(3) { grid-area: card3; }
.sig-grid .sig-img-link:nth-child(4) { grid-area: card4; }

.sig-card {
    position: relative;
    border: 2px solid #f1b400;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.sig-card-area-1, .sig-card-area-2 { aspect-ratio: 1 / 1; }
.sig-card-area-3, .sig-card-area-4 { aspect-ratio: 2.2 / 1; }

.sig-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sig-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 12px 10px;
    text-align: left;
}

.sig-overlay p {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.sig-btn-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 40px auto 0;
    border: 2px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.sig-btn {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: white !important;
    padding: 14px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.sig-shrink-text {
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    animation: sigShrink 1.5s ease-in-out infinite;
}

@keyframes sigShrink {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* ===== 360 VIDEO SECTION ===== */
.video-360-section {
    position: relative;
    width: 100%;
    background-color: #000;
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 15px 60px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    border-top: 2px solid #c5a059;
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}

.v360-title {
    font-family: 'Cinzel', serif;
    color: #c5a059;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.v360-subtitle {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.v360-link {
    text-decoration: none;
    display: block;
    max-width: 380px;
    margin: 0 auto;
}

.v360-frame {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 3.2 / 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.v360-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

.yt-top-bar-v360 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 2;
    box-sizing: border-box;
}

.yt-logo-v360 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    background: #fff;
}

.yt-title-v360 {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: left;
}

.yt-dots-v360 {
    color: #fff;
    font-size: 18px;
    margin-left: 5px;
}

.v360-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    z-index: 3;
    opacity: 0.9;
    pointer-events: none;
}

.v360-branding-bottom {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 55px;
    z-index: 2;
    opacity: 0.8;
}

/* ===== FLOOR PLANS SECTION ===== */
.floorplan-section {
    background-color: #4b3621;
    padding: 50px 15px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 850px;
}

.fp-title {
    font-family: 'Cinzel', serif;
    color: #f1b400;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.fp-subtitle {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 700;
}

.fp-header-row {
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid #ffffff50;
    margin: 0 10px 20px 10px;
    gap: 20px;
    padding-left: 5px;
}

.fp-cat-tab {
    color: #888;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    padding-bottom: 8px;
    transition: 0.3s;
    position: relative;
    white-space: nowrap;
}

.fp-cat-tab.active { color: #f1b400; }
.fp-cat-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #f1b400;
}

.fp-content-wrapper {
    display: none;
}
.fp-content-wrapper.active { display: block; }

.fp-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.fp-slider::-webkit-scrollbar { display: none; }

.fp-card-link {
    min-width: 280px;
    scroll-snap-align: center;
    position: relative;
    display: block;
    text-decoration: none;
}

.fp-card {
    background: #000;
    border: 2px solid #f1b400;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    position: relative;
}

.fp-card img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.6;
    filter: blur(2px);
}

.fp-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.fp-download-svg {
    width: 48px;
    height: 48px;
    fill: #ffffff;
}

@keyframes fpSlideArrow {
    0% { transform: translateY(-10px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

.fp-animated-arrow {
    animation: fpSlideArrow 2s infinite cubic-bezier(0.42, 0, 0.58, 1);
}

/* ===== PROJECT GALLERY SECTION ===== */
.project-location-section {
    background-color: #4b3621;
    padding: 40px 0px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1100px;
}

.inner-white-card {
    background-color: #fdf5e6;
    border: 4px solid #f1b400;
    border-radius: 15px;
    padding: 35px 15px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sec-title {
    font-family: 'Cinzel', serif;
    color: #c5a059;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.sec-subtitle {
    font-size: 11px;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.pg-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.pg-slider::-webkit-scrollbar { display: none; }

.pg-slide-link {
    min-width: 90%;
    scroll-snap-align: center;
    text-decoration: none;
    display: block;
}

.pg-slide {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
}
.pg-slide img {
    width: 100%;
    height: 100%;
    display: block; }

.loc-btn-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 20px auto;
    border: 1.5px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.custom-btn-link {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: #fff !important;
    padding: 16px 20px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.btn-shrink-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    animation: locShrinkEffect 1.5s ease-in-out infinite;
}

@keyframes locShrinkEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

.loc-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #000;
    margin: 60px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.loc-desc {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 10px;
    text-align: justify;
}

.loc-list {
    text-align: left;
    border-top: 1px solid #c5a059;
    margin-bottom: 30px;
}

.loc-item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e0d0b0;
}

.loc-icon {
    width: 22px;
    margin-right: 12px;
}

.loc-text {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

/* ===== SAMPLE FLAT SECTION ===== */
.sample-flat-section {
    background-color: #4b3621;
    padding: 55px 1px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.sample-flat-card {
    background-color: #fdf5e6;
    border: 4px solid #f1b400;
    border-radius: 9px;
    padding: 25px 12px;
    box-sizing: border-box;
}

.sf-title {
    font-family: 'Cinzel', serif;
    color: #f1b400;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.sf-subtitle {
    color: #000;
    font-size: 11px;
    margin-bottom: 25px;
    font-family: 'Arimo', sans-serif;
}

.sf-video-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.sf-video-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.sf-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 3 / 1.7;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.sf-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yt-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 2;
}

.yt-channel-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    background: #fff;
}
.yt-video-title {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    text-align: left;
}
.yt-more-icon {
    color: #fff;
    font-size: 18px;
    margin-left: 5px;
}
.sf-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    z-index: 2;
    opacity: 0.95;
}
.yt-bottom-logo {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 50px;
    z-index: 2;
}

.sf-btn-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border: 1.5px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: inline-block;
}

.sf-btn-link {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: #fff !important;
    padding: 14px 20px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.sf-shrink-text {
    display: inline-block;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    animation: sfShrink 1.5s ease-in-out infinite;
}

@keyframes sfShrink {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* ===== CONFIGURATIONS SECTION ===== */
.config-section {
    background-color: #4b3621;
    padding: 40px 15px;
    text-align: center;
    font-family: 'Arimo', sans-serif;
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}

.config-label {
    font-family: 'Cinzel', serif;
    color: #f1b400;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-weight: 700;
}

.config-subtitle {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.config-card {
    background-color: #fdf5e6;
    border: 2px solid #f1b400;
    border-radius: 15px;
    margin-bottom: 50px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.config-img-box {
    position: relative;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16 / 8; /* aspect ratio is changed from 16:9 to 16:8 to fit properly */
    min-height: 180px;
    overflow: hidden;
    text-decoration: none;
}

.config-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.9;
    object-fit: contain;
    object-position: center;
    filter: none;
}

.img-download-svg {
    position: absolute;
    width: 50px;
    height: 50px;
    fill: #ffffff;
    z-index: 5;
}

@keyframes arrowSlideDown {
    0% { transform: translateY(-12px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.animate-arrow {
    animation: arrowSlideDown 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.config-body { padding: 15px 12px; }

.config-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 27px;
    color: #000;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.pill-info {
    border: 1.8px solid #f1b400;
    border-radius: 16px;
    padding: 10px 12px;
    margin: 6px 0;
    font-size: 18px;
    color: #1a1a1a;
    background: #fff;
    display: inline-block;
    width: 82%;
    font-weight: 900;
}

.config-price {
    font-size: 18px;
    color: #000;
    margin: 15px 0;
    font-weight: 700;
}

.config-btn-wrapper-single {
    width: 100%;
    max-width: 250px;
    margin: 10px auto 20px;
    border: 1.5px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: block;
    text-decoration: none;
}

.btn-top-sheet {
    background: linear-gradient(90deg, #a8570a, #ffb000);
    color: #fff !important;
    padding: 12px;
    display: block;
    border-bottom: 1.5px solid #000;
    text-align: center;
}

.btn-bottom-wa {
    background: #fff;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wa-shrink-icon {
    width: 18px;
    height: auto;
    animation: configShrink 1.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes configShrink {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

/* ===== FOOTER STYLES ===== */
.mobile-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 15px 100px 15px;
    text-align: center;
    font-family: 'Arimo';
    box-sizing: border-box;
}

.footer-logo-box {
    margin-bottom: 30px;
}

.main-logo-gold {
    width: 110px;
    margin-bottom: 15px;
}

.footer-hr {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 25px 0;
}

.footer-sec-title {
    font-family: 'Lora';
    color: #f1b400;
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-text {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
}

.disclaimer-text {
    font-size: 10px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
}

.rera-qr {
    background: #fff;
    padding: 8px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 10px;
}

.rera-qr img {
    width: 90px;
    display: block;
}

.rera-id {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    margin: 2px 0;
}

.footer-bottom {
    font-size: 11px;
    color: #777;
    margin-top: 35px;
}

.footer-bottom p { margin: 4px 0; }

.footer-bottom a {
    color: #777;
    text-decoration: underline;
}

/* ===== STICKY FOOTER NAV ===== */
.fixed-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 60px;
    z-index: 99999;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
    font-family: 'Arimo', sans-serif;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: none;
}

.elementor-editor-active .fixed-footer-nav {
    display: flex !important;
    transform: translateY(0) !important;
    position: relative !important;
    margin-top: 20px;
}

.fixed-footer-nav.show {
    transform: translateY(0);
}

.footer-btn-split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.btn-phone {
    background-color: #ffffff;
    color: #000;
    border-right: 1px solid #eee;
}

.btn-whatsapp {
    background-color: #39cc51;
    color: #ffffff;
}

.footer-svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@keyframes waveFade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.wave1 { animation: waveFade 1.5s infinite; animation-delay: 0s; }
.wave2 { animation: waveFade 1.5s infinite; animation-delay: 0.3s; }
.wave3 { animation: waveFade 1.5s infinite; animation-delay: 0.6s; }

@keyframes waReceiverShake {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
}
.wa-receiver {
    transform-origin: center;
    animation: waReceiverShake 2s infinite ease-in-out;
}

@media screen and (max-width: 767px) {
    .fixed-footer-nav { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
