:root {
    --color-primary: #1e3a5f;
    /* Elegant Deep Blue */
    --color-primary-light: #2b5082;
    --color-gold: #c5a059;
    /* Soft Elegant Gold */
    --color-gold-hover: #dcb871;
    --color-dark: #1f2937;
    /* Softer Dark */
    --color-light: #ffffff;
    --color-bg-subtle: #f8f9fa;
    /* Light grey for sections */

    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

html,
body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: #4b5563;
    /* Softer text color for better readability */
    background-color: var(--color-bg-subtle);
    line-height: 1.6;
    position: relative;
}

p {
    text-align: justify;
}

/* Premium Preloader & Entry Animations */
#premiumPreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

#premiumPreloader.loaded {
    transform: translateY(-100%);
}

.progress-line {
    width: 250px;
    height: 2px;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--color-gold);
    animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Ready Entry States (Triggered via JS) */
.hero-image {
    transform: scale(1.15);
    filter: blur(4px);
    transition: transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.5s ease;
}

body.page-ready .hero-image {
    transform: scale(1);
    filter: blur(0);
}

.hero-form-wrapper-col {
    opacity: 0;
    transform: translateX(50px) translateY(-50%);
    transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
}

body.page-ready .hero-form-wrapper-col {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
}

#navbar {
    transform: translateY(-100%);
    transition: transform 1s ease 0.8s;
}

body.page-ready #navbar {
    transform: translateY(0);
}

/* Parallax Blobs */
.parallax-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(197, 160, 89, 0.2);
    top: 20%;
    left: -100px;
    animation: floatBlob 20s infinite alternate;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(30, 58, 95, 0.1);
    top: 60%;
    right: -150px;
    animation: floatBlob 25s infinite alternate-reverse;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 100px) scale(1.1);
    }
}

/* Typography Custom */
.font-playfair {
    font-family: var(--font-heading);
}

.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
}

.bg-black {
    background-color: var(--color-dark) !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.tracking-wider {
    letter-spacing: 0.15em;
}

.section-padding {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.divider {
    width: 50px;
    height: 3px;
}

/* ============================================ */
/* 3D BUTTON & CTA HIGHLIGHT SYSTEM             */
/* ============================================ */
.btn-primary {
    background: linear-gradient(145deg, #670181, #370041);
    border: none;
    color: white;
    border-radius: 10px !important;
    box-shadow:
        0 6px 0 #0f1f38,
        0 8px 15px rgba(30, 58, 95, 0.35);
    transform: translateY(0);
    transition: all 0.15s ease;
    position: relative;
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #670181, #370041);
    transform: translateY(-3px);
    box-shadow:
        0 9px 0 #0f1f38,
        0 12px 25px rgba(30, 58, 95, 0.4);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #0f1f38,
        0 4px 8px rgba(30, 58, 95, 0.3);
}

.btn-gold {
    background: linear-gradient(145deg, var(--color-gold-hover), var(--color-gold));
    border: none;
    color: white;
    border-radius: 10px !important;
    box-shadow:
        0 6px 0 #8a6c28,
        0 8px 15px rgba(197, 160, 89, 0.4);
    transform: translateY(0);
    transition: all 0.15s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #8a6c28, 0 12px 25px rgba(197, 160, 89, 0.5);
    color: white;
}

.btn-gold:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #8a6c28, 0 4px 8px rgba(197, 160, 89, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 10px !important;
    background: transparent;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
}

.btn-outline-primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Magnetic CTA button - Hero primary action */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-magnetic:hover::before {
    width: 400px;
    height: 400px;
}

.btn-magnetic span {
    position: relative;
    z-index: 1;
}

/* CTA Highlight Ring */
.cta-highlight {
    position: relative;
    display: inline-block;
}

.cta-highlight::before,
.cta-highlight::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 14px;
    border: 2px solid var(--color-gold);
    animation: ctaRing 2s ease-out infinite;
    opacity: 0;
}

.cta-highlight::after {
    animation-delay: 1s;
}

@keyframes ctaRing {
    0% {
        opacity: 0.8;
        inset: -4px;
    }

    100% {
        opacity: 0;
        inset: -18px;
    }
}

.shadow-glow {
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.shadow-glow:hover {
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.pulse-hover:hover {
    animation: pulse-glow 1s infinite;
}

/* Cinematic Visual Effects */
.parallax-bg {
    background: linear-gradient(#670181ba, #370041bd), url('../images/about-bg.jpg') no-repeat;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
}

@media (max-width: 991px) {
    .parallax-bg {
        background-attachment: scroll;
    }

    /* Disable on mobile for performance */
}

.float-animate {
    animation: floatingIcon 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatingIcon {
    0% {
        transform: translateY(0px) translateZ(20px);
    }

    50% {
        transform: translateY(-8px) translateZ(20px);
    }

    100% {
        transform: translateY(0px) translateZ(20px);
    }
}

.text-shimmer {
    display: inline-block;
    color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, var(--color-gold) 0%, #ffffff 50%, var(--color-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

/* Utilities */
.transition-all {
    transition: all 0.3s ease;
}

.transition-transform {
    transition: transform 0.3s ease;
}

/* Header Glass - Elegant White */
.header-glass {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-glass .nav-link {
    color: var(--color-dark) !important;
}

.header-glass .nav-link:hover {
    color: var(--color-primary) !important;
    opacity: 1;
}

.brand-text {
    color: var(--color-primary);
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--color-primary);
    width: 0%;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* ------------------------------------- */
/* HERO SECTION STRICT IMPLEMENTATION    */
/* ------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--color-dark);
}

.hero-image-wrapper {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100% - 85px);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    display: none;
}

.hero-image-wrapper picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content-container {
    position: absolute;
    top: 85px;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% - 85px);
    z-index: 5;
    padding-top: 40px;
    pointer-events: none;
}

/* Lead Form - Premium Highlighted  */
.glassmorphism {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid #5c0172;
    box-shadow:
        0 0 0 6px rgba(197, 160, 89, 0.12),
        0 0 0 12px rgba(197, 160, 89, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.18);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    animation: formGlow 3s ease-in-out infinite;
}

/* .glassmorphism::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-primary), var(--color-gold));
    background-size: 200% auto;
    animation: shimmerBar 2.5s linear infinite;
} */

@keyframes shimmerBar {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes formGlow {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.12), 0 0 0 12px rgba(197, 160, 89, 0.05), 0 20px 60px rgba(0, 0, 0, 0.18);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(197, 160, 89, 0.22), 0 0 0 18px rgba(197, 160, 89, 0.08), 0 25px 70px rgba(0, 0, 0, 0.22);
    }
}

.form-title {
    color: var(--color-primary);
}

.glass-input {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: var(--color-dark) !important;
    border-radius: 8px !important;
}

.glass-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.1) !important;
    border-color: var(--color-primary) !important;
}

.glass-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.badge-premium {
    background: rgba(30, 58, 95, 0.1);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-form-wrapper-col {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 420px;
    z-index: 10;
    pointer-events: auto;
}

@media (min-width: 1200px) {
    .hero-form-wrapper-col {
        right: 0;
    }
}

/* Mobile Adjustments for Hero */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        display: block;
        background: white;
        overflow: visible;
        padding-top: 85px;
        /* Offset for fixed header */
    }

    .hero-image-wrapper {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
        z-index: 1;
    }

    .hero-image {
        height: auto;
        width: 100%;
        object-fit: contain;
    }

    .hero-content-container {
        position: relative;
        top: 0;
        left: auto;
        transform: none;
        padding: 40px 15px;
        background: white;
        z-index: 5;
        margin-top: 0;
        width: 100%;
        pointer-events: auto;
    }

    .hero-form-wrapper-col {
        position: relative;
        right: auto;
        top: auto;
        transform: translateY(0);
        opacity: 1;
        max-width: 100%;
        margin-top: 0;
        z-index: 10;
    }

    body.page-ready .hero-form-wrapper-col {
        opacity: 1;
        transform: translateY(0);
    }

    .glassmorphism {
        background: white;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(197, 160, 89, 0.2);
        padding: 25px;
    }
}

@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}

/* Projects */
.glass-panel {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
}

.img-zoom-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

@media (max-width: 991px) {

    .img-zoom-container,
    .project-card.flex-row-reverse .img-zoom-container {
        border-radius: 16px 16px 0 0;
    }
}

.img-zoom-container img {
    transition: transform 0.8s ease;
}

.project-card:hover .img-zoom-container img {
    transform: scale(1.05);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

/* Location */
.interactive-card {
    background: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary) !important;
}

.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.interactive-card:hover .icon-circle {
    transform: scale(1.1);
    background-color: var(--color-gold) !important;
}

/* Amenities */
.amenity-card {
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.border-bottom-primary-hover:hover {
    border-bottom: 4px solid var(--color-primary) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.icon-wrap {
    font-size: 2rem;
}

/* Gallery */
.gallery-item {
    cursor: pointer;
    border-radius: 12px;
}

.gallery-large {
    height: 480px;
}

.gallery-small {
    height: 232px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.5);
    /* Elegant blue overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

/* Popup */
.popup-glass {
    background: white;
    border-radius: 16px;
}

/* 3D Tilt Effect */
.tilt-effect {
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-inner {
    transition: transform 0.3s ease;
}

/* ============================================ */
/* 3D AMENITIES SWIPER                          */
/* ============================================ */
.swiper-full-wrap {
    width: 100%;
    margin: 40px 0;
    position: relative;
    overflow: visible;
    /* Allows 3D cards to show beyond swiper container if needed */
}

.swiper-amenities {
    padding: 60px 0 80px !important;
    overflow: visible !important;
    /* CRITICAL: Fixed nav buttons not showing */
}

.swiper-slide {
    width: 350px;
    /* Fixed width for better 3D control */
    height: auto;
    transition: 0.3s;
}

.amenity-slide-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    height: 100%;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.amenity-img-box {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.amenity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.swiper-slide-active .amenity-slide-card {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
}

.swiper-slide-active .amenity-img-box img {
    transform: scale(1.1);
}

/* Custom Navigation - Positioned for Visibility */
.amenities-next,
.amenities-prev {
    color: white !important;
    background: var(--color-primary);
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease;
    z-index: 10;
}

.amenities-next:hover,
.amenities-prev:hover {
    background: var(--color-gold);
    transform: translateY(-50%) scale(1.1) !important;
}

.amenities-next:after,
.amenities-prev:after {
    font-size: 1.1rem !important;
    font-weight: 900;
}

.amenities-next {
    right: 5% !important;
}

.amenities-prev {
    left: 5% !important;
}

/* Pagination */
.amenities-pagination {
    bottom: 20px !important;
}

.amenities-pagination .swiper-pagination-bullet {
    background: var(--color-primary) !important;
    width: 10px;
    height: 10px;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.amenities-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 40px;
    background: var(--color-gold) !important;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .swiper-slide {
        width: 300px;
    }

    .amenities-next,
    .amenities-prev {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 280px;
    }

    .amenities-next,
    .amenities-prev {
        display: none !important;
        /* Hide on mobile to avoid overlap */
    }
}

/* ============================================ */
/* 3D PERSPECTIVE COUNTERS                      */
/* ============================================ */
.counter-item {
    perspective: 600px;
}

.counter-item .display-3 {
    transform: rotateX(0deg);
    transition: transform 0.4s ease;
    display: inline-block;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.counter-item:hover .display-3 {
    transform: rotateX(-15deg) scale(1.08);
}

/* ============================================ */
/* BUTTON RIPPLE CLICK EFFECT                   */
/* ============================================ */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: ripple 0.6s linear;
    pointer-events: none;
    transform: scale(0);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================ */
/* 3D SECTION HEADING DEPTH                     */
/* ============================================ */
.heading-3d {
    text-shadow:
        1px 1px 0 rgba(0, 0, 0, 0.05),
        2px 2px 0 rgba(0, 0, 0, 0.04),
        3px 3px 0 rgba(0, 0, 0, 0.03);
    transform: perspective(400px) rotateX(0deg);
    transition: transform 0.4s ease;
    display: inline-block;
}

.heading-3d:hover {
    transform: perspective(400px) rotateX(-5deg);
}

/* About Section Custom Styles */
.bg-about-white {
    background-color: #ffffff !important;
    color: #4b5563 !important;
}

.about-divider {
    width: 200px;
    height: 3px;
    background: var(--color-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
    border-radius: 2px;
}

.about-text-bold {
    letter-spacing: 0.01em;
    font-size: 1.35rem;
    color: var(--color-dark);
}

.project-card .p-4.p-md-5 {
    min-height: 450px;
}

/* ============================================ */
/* WHY BUY PLOTS - Reason Cards                 */
/* ============================================ */
.reason-card {
    transition: transform 0.3s ease;
}

.reason-img-wrapper {
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #eee;
}

.hover-zoom {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reason-card:hover .hover-zoom {
    transform: scale(1.1);
}

.italic-style {
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: #333 !important;
}

/* ============================================ */
/* SITEPLAN TABS & PREVIEW                      */
/* ============================================ */
#siteplan .nav-pills .nav-link {
    background: white;
    color: var(--color-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#siteplan .nav-pills .nav-link.active {
    background: linear-gradient(145deg, #670181, #370041);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 56, 118, 0.2) !important;
}

.siteplan-img-wrapper {
    position: relative;
    max-width: 800px;
    /* Reduced for better focus */
    margin: 0 auto;
}

.siteplan-img-wrapper a {
    cursor: zoom-in;
    display: block;
    position: relative;
    max-height: 600px;
    background: #fdfdfd;
}

.siteplan-img-wrapper img {
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 580px;
    width: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.siteplan-img-wrapper:hover img {
    transform: scale(1.05);
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.siteplan-img-wrapper:hover .plan-overlay {
    opacity: 1;
}

.plan-overlay .btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.siteplan-img-wrapper:hover .plan-overlay .btn {
    transform: scale(1);
}

/* ============================================ */
/* LOCATION ADVANTAGE ACCORDION                 */
/* ============================================ */
.premium-accordion .accordion-button {
    background: white;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background: rgba(0, 56, 118, 0.03);
    color: var(--color-primary);
}

.acc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.bg-blue-light {
    background: rgba(13, 110, 253, 0.1);
}

.bg-red-light {
    background: rgba(220, 53, 69, 0.1);
}

.bg-gold-light {
    background: rgba(197, 160, 89, 0.1);
}

.bg-purple-light {
    background: rgba(111, 66, 193, 0.1);
}

.location-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list li span:first-child {
    font-size: 0.95rem;
    color: #4b5563;
}

.map-swiper-container {
    height: 550px;
}

.map-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-next,
.map-prev,
.gmap-next,
.gmap-prev {
    color: var(--color-primary) !important;
    background: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-next:after,
.map-prev:after,
.gmap-next:after,
.gmap-prev:after {
    font-size: 1rem !important;
    font-weight: 900;
}

@media (max-width: 991px) {
    .map-swiper-container {
        height: 400px;
    }
}

@media (max-width: 991px) {
    .italic-style {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .about-divider {
        width: 180px;
    }

    .about-text-bold {
        font-size: 1.15rem;
    }

    .navbar-brand img {
        height: 32px;
    }

    .display-4 {
        font-size: 2.2rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}

.discl {
    font-size: 12px;
}

.selldof label,
.selldof .title {
    display: none !important;
}

.selldof .form-control,
.sell_do_form_control {
    height: 50px !important;
}

.selldof .btn,
.sell_do_ctc_btn,
.selldof .btn,
.sell_do_verify_btn {
    width: 100%;
    font-size: 20px !important;
    font-weight: 700 !important;
    background: linear-gradient(145deg, #670181, #370041) !important;
    border: none;
    color: white !important;
    border-radius: 10px !important;
    /* box-shadow:
        0 6px 0 #0f1f38,
        0 8px 15px rgba(30, 58, 95, 0.35); */
    transform: translateY(0);
    transition: all 0.15s ease;
    position: relative;
    letter-spacing: 0.03em;
}