/* --- Premium White Theme Variables & Base Styles --- */
:root {
    --gold: #b89047; /* Slightly darker, refined gold for white background contrast */
    --gold-light: #dfcba5;
    --charcoal: #1a1a1a;
    --charcoal-light: #2c2c2c;
    --pure-white: #ffffff;
    --off-white: #f8f9fa;
    --border-light: #eaeaea;
    --text-dark: #111111;
    --text-muted: #666666;
     --pearl: #f5f5f7;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--pure-white);
    line-height: 1.6;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

.tracking-wide {
    letter-spacing: 2px;
}

.text-charcoal {
    color: var(--charcoal);
}

/* --- Global Section Settings --- */
section {
    padding: 3rem 0;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

/* --- Navbar (White Theme) --- */
.premium-nav {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal) !important;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--text-muted) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--charcoal) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Buttons --- */
.btn-gold-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 25px;
    border-radius: 0;
    transition: all 0.4s ease;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--pure-white);
}

.btn-gold-solid {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--pure-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 0;
    transition: all 0.4s ease;
}

.btn-gold-solid:hover {
    background: transparent;
    color: var(--gold);
}

.btn-charcoal-solid {
    background: var(--charcoal);
    color: var(--pure-white);
    border: 1px solid var(--charcoal);
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 0;
    transition: all 0.4s ease;
}

.btn-charcoal-solid:hover {
    background: transparent;
    color: var(--charcoal);
}

/* --- Hero Section (Light & Airy) --- */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    overflow: hidden;
}

/* Abstract light mesh background effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--gold-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 10px;
    margin-bottom: 2rem;
    color: var(--charcoal);
}

.gold-divider {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

.hero-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* --- Highlights Grid --- */
.highlights-section {
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    border-right: 1px solid var(--border-light);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}

.highlight-value {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 1.5rem;
    color: var(--charcoal);
}

/* --- Overview Section --- */
.overview-section {
    background-color: var(--off-white);
}

.abstract-shape {
    width: 100%;
    height: 500px;
    background: var(--pure-white);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.abstract-shape::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.section-body {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* --- Amenities Section (Pure Structure/Typography) --- */
.amenities-section {
    background-color: var(--pure-white);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.amenity-card {
    position: relative;
    padding: 3rem 2rem;
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    overflow: hidden;
}

.amenity-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.amenity-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--off-white); /* Faint watermark in white theme */
    line-height: 1;
    transition: color 0.4s ease;
}

.amenity-card:hover .amenity-number {
    color: rgba(184, 144, 71, 0.1); /* Subtle gold tint on hover */
}

.amenity-name {
    position: relative;
    /*font-family: 'Playfair Display', serif;*/
    font-size: 1.2rem;
    color: var(--charcoal);
    margin: 0;
    z-index: 1;
}

/* --- Floor Plans Section --- */
.floorplan-section {
    background-color: var(--off-white);
}

.premium-blur-container {
    position: relative;
    /*height: 450px;*/
    background: repeating-linear-gradient(45deg, #e4e4e4, #e4e4e4 10px, #eeeeee 10px, #eeeeee 20px);
    cursor: pointer;
    overflow: hidden;
}
.premium-blur-container img{
    filter: blur(4px);
}
.frosted-glass-overlay {
    position: absolute;
    inset: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: background 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.premium-blur-container:hover .frosted-glass-overlay {
    background: rgba(255, 255, 255, 0.85);
}

/* --- Specifications Section --- */
.specs-section {
    background-color: var(--pure-white);
}

.spec-block {
    padding: 3rem;
    background: var(--off-white);
    border-top: 2px solid var(--gold);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    height: 100%;
}

.spec-heading {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    font-weight: 400;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.spec-list li:last-child {
    border-bottom: none;
}

/* --- Premium Footer & Forms --- */
.premium-footer {
    background-color: var(--off-white);
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.contact-form-wrapper {
    background-color: var(--pure-white);
    padding: 3rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.premium-input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #cccccc;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    transition: border-color 0.3s;
}

.premium-input:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.premium-input::placeholder {
    color: #999999;
}

/* Modal styling */
.premium-modal .modal-content {
    background-color: var(--pure-white);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}
#home{
    padding-top:87px;
}
/* --- Premium Image Gallery Section --- */
.image-gallery-section {
    background-color: var(--pure-white);
    padding: 6rem 0;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    width: 100%;
    display: block;
    background-color: var(--off-white);
}

.large-wrapper {
    height: 100%;
    min-height: 500px;
}

.small-wrapper {
    height: calc(250px - 0.5rem);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-img-wrapper:hover .gallery-img {
    transform: scale(1.08);
}

/* Elegant gradient overlay that appears on hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--pure-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-img-wrapper:hover .overlay-text {
    transform: translateY(0);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .large-wrapper {
        min-height: 350px;
    }
    .small-wrapper {
        height: 250px;
    }
}

/* --- Premium Accordion Specifications Section --- */
.specs-section {
    background-color: var(--pure-white);
}

.premium-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    border-radius: 0 !important;
}

.premium-accordion .accordion-item:last-child {
    border-bottom: none;
}

/* Reduced padding and font-size to make it more compact */
.premium-accordion .accordion-button {
    background-color: transparent;
    color: var(--charcoal);
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; 
    padding: 1rem 0; 
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Replaced ::before with ::after to keep text left-aligned and + right-aligned */
.premium-accordion .accordion-button::after {
    content: '+';
    background-image: none; /* Overrides default Bootstrap SVG arrow */
    margin-left: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--gold);
    background-color: transparent;
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    content: '−'; /* Minus sign */
    background-image: none;
    color: var(--gold);
    transform: rotate(180deg);
}

/* Reduced bottom padding to save vertical space */
.premium-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
}

/* Elegant List Styling */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    font-weight: 400;
    padding: 8px 0 8px 20px; /* Reduced vertical padding here too */
    position: relative;
    font-size: 0.9rem;
}

.spec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 6px;
    height: 1px;
    background-color: var(--gold);
}
.bg-pearl {
    background-color: var(--pearl) !important;
}
.border-light {
    border-color: var(--border-light) !important;
}
.carousel-indicators{
    bottom:-7px;
}
.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
}
a{
    text-decoration:none;
}
@media (max-width:575px){
    html, body{
        overflow-x:hidden;
    }
    .border-right{
        border-right:1px solid #fff;
    }
    #home{
        padding-top:0;
    }
    .hero-section{
        height:auto;
    }
    .highlight-value{
        font-size: 1rem;
    }
    .highlight-item{
        padding: 1rem 0 0;
        border-right:0;
    }
    .section-title{
        font-size: 2rem;
    }
}

/* --- Thank You Page Specific Styles --- */

.thank-you-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background mesh to match the hero section */
.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--gold-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
}

.thank-you-section .container {
    position: relative;
    z-index: 1;
}

.thank-you-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--charcoal);
    font-weight: 400;
}

.thank-you-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Structural Ornament (Replaces standard checkmark icons) */
.ornament-line {
    width: 2px;
    height: 60px;
    background-color: var(--gold);
    position: relative;
}

.ornament-line::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold);
}