:root {
    /* Define the custom premium palette used throughout the design */
    --color-maroon: #E41C3B;          /* Primary deep red */
    --color-maroon-dark: #B0162A;     /* Darker red for hover states */
    --color-primary-gold: #B89D75;    /* Gold accent */
    --color-dark-gold: #A38661;       /* Deeper gold for contrast */
    --color-light-bg: #FFFBEC;        /* Very light cream */
    --color-cream: #fff8f0;           /* Soft warm background */
    --color-text: #1f1b18;            /* Dark text for readability */
    
    /* Original variables from style.css */
    --colorPrimary: #E41C3B;
    --colorSecondary: #E41C3B;
    --colorBtn: #ffffff;
}

/* Base resets and global styles */
body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(circle at top, var(--color-cream) 0%, var(--color-light-bg) 60%, #f0ece6 100%);
    color: var(--color-text);
}

.head {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.pro-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

#loader {
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
}

.loader-text {
    display: block;
    text-align: center;
    color: #d7d7d7;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes loader {
    0% { filter: grayscale(0); }
    50% { filter: grayscale(100%); }
    100% { filter: grayscale(0); }
}

.loader-logo {
    width: 300px;
    animation: loader 1.3s infinite linear;
}

.pload { display: none; }
.iti__flag-container { display: none; }
section#mymap { height: 540px; }

/* Premium navbar and headers */
.navbar, .micro-nav, .micro-main-slider .carousel-item {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-dark) 100%) !important;
}
.navbar-nav .nav-link, .navbar-brand, .micro-nav .nav-link {
    color: rgba(255,255,255,0.95) !important;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    color: var(--color-primary-gold) !important;
}

/* Button styling to match premium theme */
.micro-form-btn, .btn-info, .btn-info:focus, .btn-info:hover, .btn-info:active {
    background: var(--color-maroon) !important;
    border-color: var(--color-primary-gold) !important;
    color: #fff !important;
}
.micro-form-btn:hover, .btn-info:hover {
    background: #A0801B !important;
    border-color: var(--color-dark-gold) !important;
    box-shadow: 0 0 20px rgba(160, 128, 27, 0.6); 
}

/* Header/section text treatments */
.section-heading, .head, .pro-title, .pro-price, .heading1, .heading2 {
    color: var(--color-maroon-dark) !important;
}

/* Custom CSS for the Check Price button with the Rotating Conic Border animation */
.check-price-btn {
    --offset: 2px;
    --button-bg: var(--color-light-bg);
    --button-hover-bg: #A0801B;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    padding: 0.75rem 1.5rem;
    border: none;
    color: var(--color-dark-gold);
    background-color: transparent;
    border-radius: 0.75rem;
    font-weight: 600; 
    position: relative;
    overflow: hidden;
    z-index: 10;
    transition: color 0.4s ease-out, transform 0.2s ease-out; 
}

.check-price-btn:hover {
    color: var(--color-light-bg);
}

.check-price-btn::before { 
    content: '';
    background: conic-gradient(transparent 270deg, #FFFBEC, var(--color-primary-gold), transparent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.4) rotate(0turn);
    aspect-ratio: 1;
    width: 100%; height: 100%; 
    animation: rotate 2s linear infinite;
    z-index: -2;
    border-radius: inherit; 
    opacity: 1; 
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) scale(1.4) rotate(0turn); }
    to { transform: translate(-50%, -50%) scale(1.4) rotate(1turn); }
}

.check-price-btn::after {
    content: '';
    background-color: var(--button-bg);
    border-radius: inherit;
    position: absolute;
    inset: var(--offset);
    height: calc(100% - 2 * var(--offset));
    width: calc(100% - 2 * var(--offset));
    z-index: -1;
    transition: background-color 0.4s ease-out;
}

.check-price-btn:hover::after {
    background-color: var(--button-hover-bg);
}

.rupee-symbol {
    margin-right: 0.25rem;
    font-size: 1.1em;
    position: relative;
    z-index: 10;
}

/* reCAPTCHA fixes */
.g-recaptcha, .g-recaptcha > div { background: transparent !important; border: none !important; }
.g-recaptcha iframe { border: none !important; box-shadow: none !important; background: transparent !important; width: auto !important; height: auto !important; max-width: 100% !important; }
.g-recaptcha { display: flex !important; justify-content: center !important; align-items: center !important; margin: 12px 0 !important; }

/* Sticky Contact Buttons */
.sticky-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 40px rgba(0,0,0,0.3); 
    text-decoration: none !important;
}
.sticky-btn.call { color: #007bff !important; }
.sticky-btn.whatsapp { color: #25d366 !important; }
.sticky-btn img { width: 24px; height: 24px; }

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

@media (max-width: 768px) {
    body { padding-bottom: 90px; }
    .sticky-contact {
        bottom: 10px;
        left: 10px;
        right: 10px;
        flex-direction: row;
        gap: 0;
        padding: 8px;
        border-radius: 50px;
        background: rgba(255, 248, 240, 0.75) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        box-shadow: 0 10px 40px rgba(228, 28, 59, 0.15), 0 0 20px rgba(255, 255, 255, 0.5) !important;
    }
    .sticky-btn {
        flex: 1;
        border-radius: 40px !important;
        justify-content: center;
        padding: 12px !important;
        margin: 4px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
    }
    .sticky-btn.call { 
        background: #fff !important; 
        color: var(--color-maroon) !important; 
        border: 2px solid var(--color-primary-gold) !important; 
    }
    .sticky-btn.whatsapp { 
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important; 
        color: #fff !important; 
        border: none !important;
    }
    .sticky-btn img { width: 20px; height: 20px; margin-right: 6px; }
}

/* Offers Styling - Small for info-box */
.offer-bg-animation {
    display: inline-block;
    border-radius: 25px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 2px solid #FFD700;
    margin: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #1f1b18 !important;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: offerPulse 2s infinite;
}

@keyframes offerPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7); }
}

.offers-section {
    padding: 40px 0;
    text-align: center;
    background: rgba(228, 28, 59, 0.05);
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Amenities Glassmorphism Slider with Arrows & Auto-Scroll */
.amenities-slider-wrapper {
    position: relative;
    padding: 0 40px;
}
.amenities-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.amenities-slider-wrapper .slider-nav.prev {
    border: 3px solid #fff;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
}
.amenities-slider-wrapper .slider-nav.next {
    border: 3px solid #1f1b18;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1f1b18 !important;
}
.amenities-slider-wrapper .slider-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}
.amenities-slider-wrapper .slider-nav.prev:hover {
    background: #1f1b18 !important;
    color: #fff !important;
    border-color: #1f1b18;
}
.amenities-slider-wrapper .slider-nav.next:hover {
    background: #1f1b18 !important;
    color: #fff !important;
    border-color: #1f1b18;
}
.amenities-slider-wrapper .slider-nav.prev { left: -8px; }
.amenities-slider-wrapper .slider-nav.next { right: -8px; }

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

.amenity-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.amenity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.amenity-card:hover .amenity-img-wrapper img {
    transform: scale(1.05);
}

.amenity-info {
    padding: 15px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), #fff);
}

.amenity-info h4 {
    margin: 0;
    color: var(--color-maroon-dark);
    font-weight: 700;
    font-size: 1rem;
}

.amenity-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(228, 28, 59, 0.9) 0%, rgba(176, 22, 42, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.amenity-card:hover .amenity-cta-overlay {
    opacity: 1;
}

.amenity-cta-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--color-primary-gold);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.amenity-cta-btn:hover {
    background: #fff;
    color: var(--color-maroon-dark);
}

/* Gallery Slider with Flip Animation & Arrows */
.gallery-slider-wrapper {
    position: relative;
    padding: 0 40px;
}
.gallery-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.gallery-slider-wrapper .slider-nav.prev {
    border: 3px solid #fff;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
}
.gallery-slider-wrapper .slider-nav.next {
    border: 3px solid #1f1b18;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1f1b18 !important;
}
.gallery-slider-wrapper .slider-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}
.gallery-slider-wrapper .slider-nav.prev:hover {
    background: #1f1b18 !important;
    color: #fff !important;
    border-color: #1f1b18;
}
.gallery-slider-wrapper .slider-nav.next:hover {
    background: #1f1b18 !important;
    color: #fff !important;
    border-color: #1f1b18;
}
.gallery-slider-wrapper .slider-nav.prev { left: -8px; }
.gallery-slider-wrapper .slider-nav.next { right: -8px; }

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

.gallery-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    perspective: 1000px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.gallery-card:hover .gallery-inner {
    transform: rotateY(180deg);
}

.gallery-front, .gallery-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-back {
    background: var(--color-maroon);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Highlights Section - Premium Slider */
.slider-wrapper {
    position: relative;
    padding: 0 40px;
}
.slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.slider-wrapper .slider-nav.prev {
    border: 3px solid #fff;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
}
.slider-wrapper .slider-nav.next {
    border: 3px solid #1f1b18;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1f1b18 !important;
}
.slider-wrapper .slider-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}
.slider-wrapper .slider-nav.prev:hover {
    background: #1f1b18 !important;
    color: #fff !important;
    border-color: #1f1b18;
}
.slider-wrapper .slider-nav.next:hover {
    background: #1f1b18 !important;
    color: #fff !important;
    border-color: #1f1b18;
}
.slider-wrapper .slider-nav.prev { left: -8px; }
.slider-wrapper .slider-nav.next { right: -8px; }
.slider-wrapper .slider-nav .arrow-icon { font-size: 26px; font-weight: 300; line-height: 1; }

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

.highlight-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(184, 157, 117, 0.3);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-maroon), var(--color-primary-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}
.highlight-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary-gold);
}
.highlight-card:hover::before { transform: scaleX(1); }

.highlight-image-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}
.highlight-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-card {
    padding: 0;
}
.highlight-card p {
    display: none;
}

.highlight-card .highlight-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(228, 28, 59, 0.98), rgba(228, 28, 59, 0.85));
    color: #fff;
    padding: 20px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
}
.highlight-card:hover .highlight-text-overlay {
    transform: translateY(0);
}

/* Connectivity Map Aspect Ratios */
.static-map-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 21 / 9;
}

@media (max-width: 768px) {
    .static-map-container {
        aspect-ratio: 1 / 1;
    }
}

/* Location Section - Inner Section Margin */
#address_section {
    padding: 60px 30px !important;
    border: 3px solid rgba(228, 28, 59, 0.15);
    border-radius: 30px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

/* Location/Connectivity Items - Horizontal Scroll on Mobile */
.location-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    #address_section {
        padding: 40px 15px !important;
        margin: 10px;
        border-width: 2px;
    }
    .location-items-container {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .location-items-container > div {
        flex: 0 0 85vw;
        max-width: 85vw;
        scroll-snap-align: start;
    }
    .location-items-container::-webkit-scrollbar {
        height: 6px;
    }
    .location-items-container::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 3px;
    }
    .location-items-container::-webkit-scrollbar-thumb {
        background: var(--color-maroon);
        border-radius: 3px;
    }
}

.mobile-location-nav {
    display: none;
}

.mobile-slider-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-location-nav, .mobile-slider-nav {
        display: flex !important;
    }
    .section {
        padding: 30px 15px !important;
    }
    .info-box .enqModal {
        border: 2px solid var(--color-maroon) !important;
    }
    .info-box .enqModal:hover {
        background: var(--color-maroon) !important;
    }
    .info-box .enqModal:hover .heading1,
    .info-box .enqModal:hover .heading2 {
        color: #fff !important;
    }
}

.static-map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Premium Modal Center and Style */
.theme2-modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}
.theme2-modal.active { 
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.theme2-modal-content {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.6);
    margin: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.theme2-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #999;
    line-height: 1;
    z-index: 10;
}
.theme2-modal-close:hover {
    color: #333;
}

/* Info Box CTA Elements */
.info-box .enqModal:hover {
    background: rgba(228, 28, 59, 0.1) !important;
}

.info-box .pro-tag-line:hover,
.info-box .pro-price:hover {
    color: var(--color-maroon-dark);
}

.theme2-modal-header h2 { font-size: 28px; color: var(--color-maroon); margin-bottom: 10px; font-weight: 800; }
.theme2-form-submit {
    width: 100%; padding: 16px; 
    background: var(--color-maroon); color: #fff; 
    border: none; border-radius: 12px; 
    font-weight: 700; font-size: 1.1rem;
    cursor: pointer; transition: 0.3s;
}
.theme2-form-submit:hover { background: var(--color-maroon-dark); transform: translateY(-2px); }

.btn-whatsapp-modal {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 14px;
    background: #25d366; color: #fff !important;
    border-radius: 12px; margin-top: 15px;
    font-weight: 700; text-decoration: none; transition: 0.3s;
}
.btn-whatsapp-modal:hover { background: #1eb954; transform: translateY(-2px); }

/* Right Panel Styling */
.micro-side {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.micro-side .form-control {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Layout for Desktop - Main content matches banner width */
.content-wrapper {
    display: flex;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.main-content { flex: 1; min-width: 0; }
.right-panel { flex: 0 0 280px; margin-left: -1px; padding-left: 10px; border-left: 1px solid rgba(0,0,0,0.1); }

@media (max-width: 10000px) {
    .content-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .right-panel { display: none; }
}

/* Alignment Fixes */
.section { padding: 60px 20px; margin: 0; }
.head { margin-bottom: 30px !important; display: block; }

.footer-disclaimer,
section[style*="background:rgba(0,0,0,0.02)"] {
    padding: 30px 20px !important;
    margin-bottom: 0;
}

section[style*="background:rgba(0,0,0,0.02)"] {
    background: transparent !important;
}

/* Developer Section Header - CTA below on mobile */
.developer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .developer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Read More Content */
.read-more-content {
    position: relative;
}
.read-more-content .full-text {
    display: block;
}
.read-more-content.collapsed .full-text {
    display: none;
}
.read-more-content .short-text {
    display: none;
}
.read-more-content.collapsed .short-text {
    display: inline;
}
.read-more-toggle {
    display: none;
    background: var(--color-maroon);
    border: none;
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 30px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}
.read-more-toggle:hover {
    background: var(--color-maroon-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(228, 28, 59, 0.3);
}
.read-more-content.has-overflow .read-more-toggle {
    display: inline-block;
}

@media (min-width: 769px) {
    .sticky-contact { display: none !important; }
}

/* Premium Brochure Card */
.brochure-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid rgba(184, 157, 117, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.brochure-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(228, 28, 59, 0.15) !important;
    border-color: var(--color-primary-gold) !important;
}
.brochure-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.brochure-card > div:last-child {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-dark) 100%) !important;
    color: #fff !important;
}
.brochure-card > div:last-child span {
    color: #fff !important;
}
.brochure-card > div:last-child img {
    width: 24px;
    height: 24px;
}

/* Auto-Scroll Animation */
@keyframes autoScroll {
    0% { transform: translateX(0); }
    50% { transform: translateX(calc(-50% - 10px)); }
    100% { transform: translateX(0); }
}

/* Gallery Image Aspect Ratio */
.gallery-front img,
.gallery-back img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Highlights container scroll fix */
#highlights .highlights-container {
    padding-left: 0;
    padding-right: 0;
}

/* Site Floor Plan Image Aspect */
#sitefloorplan .section > div > div > div > img,
.plan-card-img {
    aspect-ratio: 4/5;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Hide slider arrows on mobile - use touch scrolling */
@media (max-width: 768px) {
    .slider-wrapper .slider-nav,
    .amenities-slider-wrapper .slider-nav,
    .gallery-slider-wrapper .slider-nav {
        display: none !important;
    }
    .slider-wrapper,
    .amenities-slider-wrapper,
    .gallery-slider-wrapper {
        padding: 0;
    }

    /* Mobile Navbar Styles */
    .micro-navbar {
        background: #fff !important;
    }
    
    .micro-navbar .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    
    .micro-navbar .navbar-nav .nav-link {
        color: #1f1b18 !important;
        padding: 12px 15px;
        border-bottom: 1px solid rgba(228, 28, 59, 0.1);
    }
    
    .micro-navbar .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .micro-navbar .navbar-nav .nav-link:hover {
        color: var(--color-maroon) !important;
        background: rgba(228, 28, 59, 0.05);
        border-radius: 8px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Virtual Tour Button Animation */
@keyframes pulse-btn {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 15px 50px rgba(255, 0, 0, 0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 20px 60px rgba(255, 0, 0, 0.7);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 15px 50px rgba(255, 0, 0, 0.5);
    }
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* Location Tabs - Premium Style */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.location-tabs .tab-link {
    padding: 14px 28px;
    border: 2px solid var(--color-maroon);
    background: transparent;
    color: var(--color-maroon);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-tabs .tab-link:first-child {
    border-radius: 30px 0 0 30px;
    border-right: none;
}

.location-tabs .tab-link:last-child {
    border-radius: 0 30px 30px 0;
    border-left: none;
}

.location-tabs .tab-link.active {
    background: var(--color-maroon);
    color: #fff;
    box-shadow: 0 8px 25px rgba(228, 28, 59, 0.3);
}

.location-tabs .tab-link:hover:not(.active) {
    background: rgba(228, 28, 59, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .location-tabs {
        max-width: 320px;
    }
    .location-tabs .tab-link {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* Virtual Tour Container */
.virtual-tour-container {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    aspect-ratio: 16/9;
}

.virtual-tour-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.virtual-tour-container .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #FF0000;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 4px solid #fff;
    animation: pulse-btn 2s infinite;
}

@media (max-width: 768px) {
    .virtual-tour-container {
        aspect-ratio: 1/1;
    }
}

/* Project Title */
.project-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-maroon-dark);
    line-height: 1.2;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .project-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
}
