@charset "utf-8";
/* CSS Document */
        /* --- Color & Font Variables for Branding --- */
        :root {
            --primary-color: #008CBA; /* A modern Blue for branding */
            --accent-color: #FF5733;  /* A vibrant Orange/Red for contrast */
            --text-dark: #333333;  /* Keep dark text for main body content */
            --text-light: #333333; /* Very light grey text for dark backgrounds #F0F0F0*/
            --bg-light: #FFFFFF; /* Keep main background white */
            --bg-dark: #E6EBF0; /* The dark/black background color #222222; */
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }

		/* --- CONTENT BLOCK ALIGNMENT FIX --- */
.content-block {
    text-align: left !important;
}
		
		
        /* --- Global Reset & Base Styling --- */
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-light);
            margin: 0;
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: var(--font-heading);
            color: var(--text-dark);
        }

        /* --- Rolling Script (Top Announcement Bar) --- */
        .top-announcement {
            background-color: var(--accent-color); 
            color: var(--text-light); 
            padding: 8px 0;
            white-space: nowrap;
            overflow: hidden;
        }

        .top-announcement div {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 25s linear infinite;
            font-weight: 500;
            font-size: 0.95rem;
        }

        @keyframes marquee {
            0%   { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }

        /* --- Header & Navigation --- */
        .main-header {
            background-color: var(--bg-light);
            padding: 15px 5%;
            border-bottom: 3px solid var(--primary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; /* Needed for absolute positioning of menu/icon */
        }

        .logo-text h1 {
            font-size: 2.5rem;
            margin: 0;
            color: var(--primary-color);
        }

        .tagline {
            font-size: 1.1rem;
            margin-top: 5px;
            color: var(--text-dark);
        }

        .tagline strong {
            color: var(--accent-color);
        }
        
        /* Desktop Navigation (Visible by default) */
        nav a {
            margin-left: 20px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: bold;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--accent-color);
        }
        
        /* Mobile-specific elements (Hidden by default) */
        .nav-toggle, .menu-icon {
            display: none;
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://via.placeholder.com/1800x600/008CBA/FFFFFF?text=Full+Size+Property+Hero+Image') no-repeat center center/cover;
            height: 500px; 
            display: flex;
            flex-direction: column;
            justify-content: center; 
            padding: 0 5%; 
            box-sizing: border-box;
        }
        
        .hero-center-text {
            color: var(--text-light);
            text-align: center;
        }
        
        .hero-center-text h2 {
            color: var(--text-light);
            font-size: 3rem;
            margin-bottom: 5px;
        }

        /* --- Main Content Framework (3-Column Layout) --- */
		
		/* Code adjustment for heading style */
		
		/* Update the existing CSS for the H2 above the three-column grid */

/* --- Styling for the main heading above the 3-column content --- */
  .content-container h2 {   /* Added h2 */
    font-size: 2.5rem; /* Large and prominent */
    color: var(--primary-color);
    text-align: center; /* Centered on the page */
    margin-bottom: 40px; /* Provides good spacing between heading and columns */
   /* border-bottom: 4px solid var(--accent-color); /* Adds visual punch, but very thin */
    display: inline-block; /* Helps with centering the underline */
    padding-bottom: 40px;
    width: 90%; /* Controls the width of the inline-block element */
    box-sizing: border-box;
}

/* Ensure the heading is centered within its container */
.content-container {
    padding: 40px 5%;
    text-align: center; /* Allows the inline-block h2 to center */
}

        .three-column-layout {  /* The three-column grid */
            display: grid;
            grid-template-columns: 1fr 1fr 1fr; 
            gap: 30px;
        }

        .content-block {
            padding: 20px;
            border: 1px solid #ddd;
            border-top: 5px solid var(--accent-color); 
            background-color: var(--bg-light);
        }

        .content-block h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* --- Footer & Map --- */
        .main-footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 40px 5%;
            margin-top: 50px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .footer-map-container {
            flex-basis: 50%;
            height: 250px;
            background-color: #444; 
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
        }

        .footer-info {
            flex-basis: 50%;
        }

        .footer-info p {
            margin: 5px 0;
            font-size: 0.9em;
            color: #ccc;
        }

        /* --- Mobile Responsiveness: HAMBURGER MENU & Layout Changes --- */
        @media (max-width: 768px) {
            
            /* Show Hamburger Icon */
            .menu-icon {
                display: block;
                cursor: pointer;
                font-size: 2.5rem;
                line-height: 1;
                color: var(--primary-color);
            }

            /* Hide full desktop navigation by default */
            nav {
                display: none;
                position: absolute;
                top: 100%; /* Position right below the header */
                left: 0;
                width: 100%;
                background-color: var(--bg-light);
                border-top: 1px solid #ddd;
                z-index: 100;
                flex-direction: column; /* Ensure links stack vertically */
                padding: 10px 0;
            }
            
            /* Style individual mobile links */
            nav a {
                display: block;
                padding: 10px 5%;
                margin: 0;
                text-align: left;
                border-bottom: 1px solid #eee;
            }
            
            /* The key: Show menu when the hidden checkbox is checked */
            .nav-toggle:checked ~ nav {
                display: flex; 
            }
            
            /* --- Layout stacking for smaller screens --- */
            .main-header {
                /* Keeps logo and icon aligned, prevents stacking */
                flex-wrap: nowrap; 
            }

            .three-column-layout {
                grid-template-columns: 1fr; /* Stack columns */
            }

            .footer-content {
                flex-direction: column;
            }
            
            /* Ensure text sizes remain consistent on mobile */
            body {
                font-size: 16px; /* Base size for mobile remains stable */
            }
            
            .hero-center-text h2 {
                font-size: 2rem; /* Adjusted for mobile view */
            }
        }
		
		/* css Key Facts */
		
		
		/* --- Scrolling Image Strip Section --- */
.image-strip-section {
    padding: 30px 5%;
    background-color: var(--light-gray-bg);
    text-align: center;
}

.image-strip-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.image-strip-container {
    position: relative; /* For positioning scroll buttons */
    max-width: 1200px; /* Limit width on very large screens */
    margin: 0 auto;
    overflow: hidden; /* Hides parts of images outside container */
}

.image-strip-wrapper {
    display: flex;
    gap: 15px; /* Space between images */
    overflow-x: scroll; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scroll-snap-type: x mandatory; /* Snap to individual items */
    padding-bottom: 10px; /* Prevents scrollbar from covering images */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

/* Hide scrollbar for Webkit browsers */
.image-strip-wrapper::-webkit-scrollbar {
    display: none;
}

.strip-item {
    flex: 0 0 calc(100% / 3.1); /* Show ~3 images, hint of 4th */
    scroll-snap-align: start;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    text-align: left;
}

.strip-item img {
    width: 100%;
    height: 200px; /* Fixed height for consistent visuals */
    object-fit: cover;
    display: block;
}

.strip-item h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin: 10px 15px;
}

/* Scroll buttons styling */
.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--crisp-white);
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.scroll-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

/* --- Mobile Responsiveness for Image Strip --- */
@media (max-width: 768px) {
    .strip-item {
        flex: 0 0 calc(100% / 1.1); /* Show ~1 image, hint of 2nd */
    }
    .scroll-button {
        padding: 5px 10px;
        font-size: 1.2rem;
    }
}
		
// ----------------------------------------------------------------		
3. JavaScript for Scroll Buttons
For actual clicking on the scroll buttons to work, we'll need a tiny bit of JavaScript. Add this right before the closing </body> tag: // ----------------------------------------------------------------

// ----------------------------------------------------------------
    // --- CONTENT FROM OLD LINE 429 (Modal and Initial Load Code moved to Line 1970) ----
    // ----------------------------------------------------------------


This setup will give you exactly the dynamic, visually engaging scrolling gallery you described, with the hint of the next image for intuitive navigation.
		
		
	
/* --- Styling for Property Cards inside Column 1 --- */
.property-card-small {
    padding: 0;
    margin-bottom: 15px;
    background-color: var(--bg-light);
}

.property-card-small h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 5px 0;
}

.location-price {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 5px 0 8px;
}

.location-price strong {
    color: var(--accent-color);
}

.summary {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.details-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.listing-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.listing-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.listing-item a:hover {
    color: var(--primary-color);
}

.listing-price {
    font-weight: bold;
    color: var(--accent-color);
}
		
/* Key Facts Value extra elements inserted  */
		
/* --- New Styling for Images inside Key Facts --- */

/* Ensures the image fills the space and is contained */
.fact-column .fact-image {
    width: 100%;
    height: 150px; /* Fixed height for visual consistency */
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 2px solid var(--accent-color); /* Highlight the visual content */
}

/* Reduces margin and size for visual facts */
.fact-column.visual-fact h3 {
    margin-top: 0;
}

/* Adjust data icon size slightly if needed for better balance */
.fact-column h3 {
    font-size: 1.1rem;
    margin: 5px 0 5px; /* Reduced vertical space */
    color: var(--accent-color);
}	
		
		
/* We'll use Flexbox to create the horizontal layout and ensure the items distribute evenly. */

/* --- Detailed Data Strip (Horizontal Row) Styling --- */
.detailed-data-strip {
    background-color: var(--bg-dark); /* Use a dark background for contrast and separation */
    color: var(--text-light);
    padding: 20px 5%;
}

.data-strip-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap; /* Allows items to wrap to a new line on smaller screens */
    margin: 0 auto;
    max-width: 1200px;
}

.data-item {
    flex: 1; /* Allows items to grow/shrink equally */
    min-width: 200px; /* Minimum size before wrapping */
    padding: 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2); /* Separator line */
}

/* Remove border from the last item */
.data-item:last-child {
    border-right: none;
}

.data-icon {
    font-size: 2rem;
    color: var(--accent-color); /* Highlight with the vibrant color */
    display: block;
    margin-bottom: 5px;
}

.data-item h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin: 5px 0;
}

.data-item p {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text-light);
    margin: 2px 0;
}

.detail-text {
    font-size: 0.8rem;
    font-weight: normal;
    color: var(--muted-gray); /* Use a muted color for secondary info */
    margin-top: 5px !important;
}

/* --- Mobile Responsiveness for Data Strip --- */
@media (max-width: 600px) {
    .data-strip-wrapper {
        flex-direction: column; /* Stack the items vertically on very small screens */
    }
    .data-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: none;
        padding: 15px 10px;
        min-width: 100%;
    }
    .data-item:last-child {
        border-bottom: none;
    }
}		
	 /* --- Color & Font Variables (MATCHING MAIN SITE) --- */
		
	/* --- Root dublicated content deleted. --- */
        
        /* --- Global Reset & Base Styling --- */
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--bg-light);
            margin: 0;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--text-dark);
            margin-top: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            /* CHANGE MADE HERE */
           padding: 0 20px;
        }

        /* --- Button Styling --- */
        .cta-button {
            background-color: var(--accent-color);
            color: var(--bg-light);
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            text-align: center;
        }

        .cta-button:hover {
            background-color: #E0482B;
        }

        /* --- Header Styling (Copied from main page) --- */
        .main-header {
            background-color: var(--bg-light);
            padding: 15px 5%;
            border-bottom: 3px solid var(--primary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .logo-text h1 { font-size: 2.5rem; margin: 0; color: var(--primary-color); }
        .tagline { font-size: 1.1rem; margin-top: 5px; color: var(--text-dark); }
        .tagline strong { color: var(--accent-color); }
        nav a { margin-left: 20px; text-decoration: none; color: var(--text-dark); font-weight: bold; transition: color 0.3s; }
        
        /* --- Page Specific Content: Pricing Table --- */
        .pricing-section {
            padding: 60px 0;
            text-align: center;
            background-color: #f4f4f4;
        }

        .pricing-section h2 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .pricing-section p.subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 50px;
        }

        .pricing-grid {
            display: flex;
            gap: 30px;
            justify-content: center;
        }

        .plan-card {
            background-color: var(--bg-light);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            flex: 1;
            max-width: 350px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .plan-card.featured {
            border: 3px solid var(--primary-color);
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .plan-card h3 {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .plan-card h4.price {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin: 10px 0 20px;
        }
        
        .plan-card h4.price small {
            font-size: 0.5em;
            color: #999;
            font-weight: normal;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-bottom: auto; /* Push button to bottom */
        }
        
        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            color: var(--text-dark);
            font-size: 1rem;
        }
        
        .plan-features li::before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
            margin-right: 8px;
        }
        
        /* --- Footer Styling (Copied from main page) --- */
        .main-footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 40px 5%;
            margin-top: 50px;
            text-align: center;
        }
        .footer-info { max-width: 600px; margin: 0 auto; }
        .footer-info h3 { color: var(--accent-color); margin-bottom: 10px; }
        .footer-info p { margin: 5px 0; font-size: 0.9em; color: #ccc; }

        /* --- Mobile Responsiveness --- */
        @media (max-width: 900px) {
            .pricing-grid {
                flex-direction: column;
                gap: 20px;
            }
            .plan-card {
                max-width: 100%;
            }
        }
		
	/* --- Engagement Bar (New Section Above Footer) --- */
.engagement-bar {
    background-color: #333; /* Dark background for contrast */
    color: white;
    padding: 30px 0; /* Add vertical padding for height */
    margin-top: 40px; /* Space above the bar */
}

.engagement-grid {
    display: flex;
    justify-content: space-between; /* Spreads the three columns out */
    gap: 20px;
    max-width: 1200px;  /* Limits the max width on very large screens */
    margin: 0 auto;  /* Centers the content */
    /* CRITICAL: Ensure padding is applied to contain items */
    padding: 0 20px;  /* CRITICAL: Adds padding on the sides, preventing content from touching the screen edges */
    flex-wrap: wrap; /* Allows columns to stack on very small screens */
    /* NEW: Allow wrapping if screen is tiny */
    flex-wrap: wrap; 
}

.engagement-column {
    flex: 1; /* Allows each column to take up an equal share of the space */
    min-width: 200px; /* Prevents columns from becoming too narrow */  /* Changed from 250px to 200px for more flexibility */
}
.engagement-column h3 {
    color: var(--accent-color); /* Use accent color for headings */
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
	/* Styling for the social links */	
		.social-row a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    font-weight: bold;
    display: inline-block; /* Ensures consistent spacing and clicking area */


/* NEW STYLING FOR BUTTON LOOK */
    background-color: var(--primary-color); 
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid var(--primary-color);
    transition: background-color 0.2s;
}
		
		.social-row a:hover {
    background-color: transparent; /* Makes them feel clickable */
    border-color: white; 
}
		
	.testimonial-content {
    /* New background and padding for the 'box' look */
    background-color: #444; /* Slightly lighter gray than the main bar (#333) */
    padding: 15px;
    border-radius: 6px;
    border-left: 5px solid var(--accent-color); /* Strong vertical line highlight */
    margin-bottom: 15px;
}
		
		/* Styling the new review form area */
.review-submission-form {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between input elements */
}
		
		.review-input,
.email-input {
    width: 100%;
    padding: 10px;
    
    /* Input field styling */
    border: 1px solid #666;
    border-radius: 4px;
    background-color: #333; /* Dark background to blend with footer */
    color: white; /* White text for readability */
    resize: vertical; 
}
		
	/* NEW FIX: Ensures padding is inside the 100% width */	
		*, *::before, *::after {
    box-sizing: border-box;
}
		
		/* Ensure the placeholder text is visible */
.review-input::placeholder,
.email-input::placeholder {
    color: #bbb;
}
		
.submit-review-btn {
    /* Uses the existing cta-button styles, just ensure the color contrast is good */
    width: 100%;
}		
		

.testimonial-content p {
    font-style: italic;
    margin: 5px 0;
	color: #f0f0f0; /* Light off-white for better readability */
}

.direct-contact a {
    /* Ensure the links are constrained */
    display: block; 
    word-wrap: break-word; /* Allows long text/emails to wrap */
    max-width: 100%; /* Ensures it doesn't exceed its parent column's width */
    
    color: var(--primary-color);
    text-decoration: none;
}

.assistant-contact {
    margin-bottom: 15px;
    line-height: 1.2;
}
.testimonial-content .author {
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    color: var(--accent-color); /* Highlight the author's name */
    font-size: 0.9rem;
    display: block; /* Ensure it stays on its own line */
}
		
		.testimonial-cta {
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: bold;
}
.testimonial-cta a {
    color: var(--accent-color); /* Highlight the link */
    text-decoration: underline;
    font-weight: normal;
}

/* --- Direct Contact Styling --- */
.assistant-contact {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
}

.assistant-contact:last-child {
    border-bottom: none;
}

.assistant-contact p {
    margin: 2px 0;
}

.assistant-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .engagement-grid {
        grid-template-columns: 1fr; /* Stack columns vertically on mobile */
    }
}	
		
/* .Model , model-content , close-button , etc is copied here from Line ??????? */
		
		
	.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 200; /* Sit on top of everything */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.6); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: var(--bg-light);
    margin: 5% auto; /* 5% from the top and centered */
    padding: 30px;
    border: 1px solid #888;
    width: 90%; /* Smaller width on small screens */
    max-width: 500px; /* Max width on large screens */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}
		
		
/* --- HERO GALLERY STYLES --- */

.hero-gallery-section {
    padding: 0 0 30px; /* Space below the gallery */
    width: 90%; /* Match main container width */
    margin: 0 auto;
    max-width: 1200px;
}	

	.main-image-display {
    position: relative; 
    /* CRITICAL: Maintain a fixed height */
    height: 450px; 
    overflow: hidden; 
}
/* ...and the image itself */
.main-image {
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
	/* End of new changs to .main-image display */

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all-button {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Thumbnail Layout (Flexbox) */
.thumbnail-strip {
    display: flex;
    gap: 10px; /* Space between thumbnails */
    overflow-x: auto; /* Allows horizontal scrolling if many thumbnails */
    padding-bottom: 10px;
    /* Optional: Hide scrollbar if you prefer a cleaner look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.thumbnail-strip::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.thumbnail {
    width: 100px; /* Fixed width for thumbnails */
    height: 65px; /* Fixed height */
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    flex-shrink: 0; /* Prevents thumbnails from shrinking to fit */
    border: 3px solid transparent;
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--accent-color); /* Highlight the selected image */
}	
		
	/* --- PROPERTY SUMMARY BAR STYLES --- */
/* --- HERO GALLERY POSITIONING CONTEXT --- */
/* CRITICAL: Allows the overlay to be positioned relative to the image */
.main-image-display {
    position: relative; 
    /* ... keep existing styles for overflow, border-radius, etc. ... */
    height: 450px; /* IMPORTANT: Keeps the space fixed */
}

/* --- PROPERTY SUMMARY OVERLAY STYLES --- */
.property-summary-overlay {
    position: absolute; /* Takes the element out of flow and floats it */
    top: 50%;           /* Move top edge to the vertical center */
    left: 50%;          /* Move left edge to the horizontal center */
    transform: translate(-50%, -50%); /* CRITICAL: Shifts element back by half its own width/height to perfectly center it */
    
    /* Styling for Visibility and Transparency */
    background-color: rgba(0, 0, 0, 0.65); /* Semi-transparent black background */
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    width: 80%; /* Takes up 80% of the image width */
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.property-summary-overlay p {
    margin: 0;
    line-height: 1.5;
    font-size: 1.2rem;
}

.property-summary-overlay strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.property-summary-overlay .price-contact-details {
    display: block;
    font-size: 1rem;
    margin-top: 5px;
}

.property-summary-overlay .details-link {
    color: var(--accent-color); 
    font-weight: bold;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}
		
	/* ---------------------------------------------------------------- */
/* --- FULL GALLERY MODAL STYLES (Lightbox) ----------------------- */
/* ---------------------------------------------------------------- */

/* Base Modal Styling (Hidden by default) */
.full-gallery-modal {
    display: none; /* Hides the modal initially */
    position: fixed; /* Stays in place even when scrolling */
    z-index: 1000; /* CRITICAL: Ensure it floats above all other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if content is too tall */
    background-color: rgba(0, 0, 0, 0.9); /* Dark, semi-transparent background */
}

/* Modal Content Box */
.full-gallery-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% margin from top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Wide modal */
    max-width: 1000px; /* Maximum width for viewing area */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
}

/* Gallery Title and Close Button */
.gallery-title {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.full-gallery-close {
    color: #aaa;
    float: right;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.full-gallery-close:hover,
.full-gallery-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* Slideshow Container */
.gallery-slideshow-container {
    max-width: 960px; /* Slightly smaller than content box */
    position: relative;
    margin: auto;
    background-color: #222; /* Dark background for the image area */
    padding: 10px;
}

/* Individual Slides */
.gallery-slide {
    display: none; /* Hide all slides by default (JavaScript will show one) */
}

.full-gallery-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60vh; /* Limits max height for comfortable viewing on monitors */
    object-fit: contain; /* Ensures the entire image is visible, no cropping */
}

.image-caption {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Next & previous buttons (CSS only, JS handles behavior) */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}	
	
		
/* ---------------------------------------------------------------- */
/* --- FOOTER LAYOUT FIX ------------------------------------------ */
/* ---------------------------------------------------------------- */

.footer-content {
    display: flex; /* Activates the side-by-side layout */
    justify-content: space-between; /* Pushes the items to the edges and spreads them out */
    flex-wrap: wrap; /* Allows sections to stack on small screens (good practice) */
    gap: 30px; /* Space between the blocks */
    padding: 20px 5%; /* Add internal spacing if needed */
}

/* Ensure all three main blocks share space */
.footer-content > div {
    /* Allows each block to take up roughly 30% of the space, 
       ensuring balance between the three items */
    flex: 1 1 30%; 
    min-width: 250px; /* Prevents text blocks from getting too narrow */
}

/* Ensure the map uses the space given to its container */
.footer-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}	
		
/* ---------------------------------------------------------------- */
/* --- FOOTER LAYOUT FIX (CRITICAL) ------------------------------- */
/* ---------------------------------------------------------------- */

.footers-content { /* <<<--- USE THE CORRECT PARENT CLASS NAME HERE */
    display: flex; /* CRUCIAL: Makes the children sit side-by-side */
    justify-content: space-between; /* Spreads items evenly across the width */
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 30px; /* Space between the blocks */
    padding: 20px 5%; /* Keep your existing padding */
    width: 100%; /* Ensure it takes full width of the screen/container */
}

/* Ensure all three main blocks share space equally */
.footers-content > div { 
    flex: 1 1 30%; /* Gives each block a base width of 30% */
    min-width: 250px; 
}		
	
		/* Styling for Feature Links that should look like buttons (e.g., Download Brochure) */

a.feature-link {
    /* Base Button Appearance */
    display: inline-block; /* Makes it act like a block for padding/width */
    background-color: var(--primary-color); /* Use a dominant color (e.g., a dark blue/green) */
    color: white !important; /* Text must be white on dark background */
    text-decoration: none; /* Remove the underline */
    padding: 10px 15px; /* Adds space inside the button */
    border-radius: 5px; /* Softens the corners */
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    border: 1px solid var(--primary-color); /* Adds a subtle border */
    margin-top: 10px; /* Separates it from content above */
}

a.feature-link:hover {
    /* Hover Effect */
    background-color: var(--accent-color); /* Use your accent color (e.g., a bright blue) on hover */
    border-color: var(--accent-color);
    cursor: pointer; /* Change cursor to pointer for better feedback */
}

/* Specific adjustment for the Download Brochure link if it needs to fill space */
.feature-list-container a.feature-link {
    width: 100%; /* If you want the button to span the full width of the feature list item */
    box-sizing: border-box;
}
		
		
	/* ---------------------------------------------------------------- */
/* --- THREE-COLUMN LAYOUT FIX (FINAL PROPORTIONS: 28/44/28) ------ */
/* ---------------------------------------------------------------- */

/* 1. Define the Wrapper to be a Flex Container */
.three-column-layout {
    display: flex;             /* Activates the side-by-side layout */
    gap: 20px;                 /* Space between columns */
    flex-wrap: nowrap;         /* Ensures they stay in one row on large screens */
    align-items: flex-start;   /* Ensures columns align at the top */
}

/* 2. Define the Individual Column Ratios (Targeting .content-block) */

/* Left Column (Property Card/Features) */
.three-column-layout .content-block:nth-child(1) {
    flex: 0 0 28%;             /* Increased from 25% */
}

/* Center Column (DMI Calculator, Property Details) */
.three-column-layout .content-block:nth-child(2) {
    flex: 1 1 44%;             /* Reduced from 50% */
    min-width: 0;              /* CRITICAL RESET for Flexbox overflow issues */
}

/* Right Column (Contact/Seller Info) */
.three-column-layout .content-block:nth-child(3) {
    flex: 0 0 28%;             /* Increased from 25% */
}

/* Fallback for responsiveness */
@media (max-width: 900px) {
    .three-column-layout {
        flex-direction: column; /* Stack columns vertically on small screens */
    }
    .three-column-layout .content-block {
        flex: 1 1 100%;         /* Allows all columns to take full width when stacked */
    }
}
	/* ... (Your :root { ... } block is here) ... */
    /* ... (All your body, h1, h2, etc. styles go here) ... */
    
    /* === INSERT THE FINAL FOOTER FIX HERE === */
    .footer-info p {
        color: var(--text-dark) !important; 
    }
    /* ========================================= */
		

/* --- KEY LETTING & SELLER INFO LIST STYLE FIX: FINAL CLEANUP --- */

/* 1. Hides bullets, ensures title text is DARKER */
.content-block ul {
    list-style: none !important;
    padding-left: 0 !important; 
    color: var(--text-dark) !important; /* Sets the default <li> color (the title) to DARK */
}

/* 2. Styles the list item (li) for neat wrapping */
.content-block ul li {
    padding-left: 30px; 
    position: relative; 
    margin-bottom: 8px;
}

/* 3. Inserts the CHECKMARK glyph (✅) */
.content-block ul li::before {
    content: "✅"; 
    position: absolute; 
    left: 0; 
    top: 0;
}

/* 4. Targets the new span for LIGHTER descriptive text */
.content-block ul li .list-desc {
    color: #666666 !important; /* Lighter grey for the description (adjustable) */
}

