/* ============================================================================
   Globals
   ============================================================================ */
.subtitle-primary {
    display: block;
    font-size: 13px;
    color: var(--primary-gold);
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.subtitle-secondary {
    display: block;
    font-size: 13px;
    color: white;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}


.header-main .container .seperator {
    width: 100%;
    margin-top: 37px;
	background-color: white;
    border: 0 none;
    height: 1px;
}

@media (max-width: 768px) {
	.header-main .container .seperator {
		margin-top: 15px;
	}
}

p {
    font-family: 'Montserrat', 'Arial', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 16px;
    color: black;
    letter-spacing: 0.1em;
}

/* ============================================================================
   Inspiration Title
   ============================================================================ */
.inspiration-title-container .main-content p
 {
    font-weight: 100;
    letter-spacing: 0.1em;
    font-size: 13px;
}


/* ============================================================================
   Title Subtitle Paragrah
   ============================================================================ */

section.title_subtitle_paragraph {
	text-align: center;
    padding-top: 60px;
	padding-bottom: 10px;
}

section.title_subtitle_paragraph.bg-white {
    text-align: center;
   
    width: 80%;
    margin: auto;
}


section.title_subtitle_paragraph.bg-lda-blue .inspiration-title-container:first-child , section.title_subtitle_paragraph.bg-lda-blue p {
	color: white;
}

/* section.title_subtitle_paragraph {
    margin-top: 60px;
} */
/* ============================================================================
   HERO
   ============================================================================ */

.hero-image {
    background-size: cover;
    width: 100%;
	height:60vh;
    display: flex;
    justify-content: center;
	background-position: center;
}

@media (min-width: 1250px) {
	.hero-image {
  aspect-ratio: 1920 / 846;
		height: auto;
	}
}


p.development-subtitle {
    color: white;
    font-family: 'Montserrat';
    letter-spacing: 0.3em;
    text-align: center;
    font-size: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
	text-transform: uppercase;
}

.development-page .hero-content h1 {max-width: 490px;}

.image-hero-section {
	position: relative;
}

.hero-image::before {
    content:"";
    display: none;
    height: 65vh;
    position: absolute;
    top:-20px;
    left: 0;
    width: 100%;
    background: linear-gradient(
    180deg,
    rgba(44, 43, 43, 0.8) 0%,
    rgba(44, 43, 43, 0) 90%
  );
}



/* ============================================================================
   Two Column with image
   ============================================================================ */
/* Two Column Image Content Section */
.two-col-image-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.two-col-image-content-section .flex-container {
    display: flex;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

/* Column layouts */
.two-col-image-content-section .col-left,
.two-col-image-content-section .col-right {
    flex: 1;
}

/* Image wrapper styling */
.two-col-image-content-section .image-wrapper {
    position: relative;
    width: 100%;
}

.two-col-image-content-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Content styling */
.two-col-image-content-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.two-col-image-content-section .main-content p, .two-col-image-content-section .main-content{
    margin-bottom: 15px;
    font-family: 'Montserrat';
    letter-spacing: 0.3em;
    font-size: 17px;
    color: var(--primary-gold);
}

/* Subtitle styling if present */
.two-col-image-content-section .subtitle {
    display: block;
    font-size: 1.2rem;
    color: #C2A66A;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Button wrapper */
.two-col-image-content-section .button-wrapper {
    margin-top: 30px;
}



/* Image position variants */
.two-col-image-content-section.image-right .flex-container {
    flex-direction: row-reverse;
}

/* Alternative approach - use order property for more reliable positioning */
.two-col-image-content-section.image-left .col-left {
    order: 1;
}

.two-col-image-content-section.image-left .col-right {
    order: 2;
}

.two-col-image-content-section.image-right .col-left {
    order: 2;
}

.two-col-image-content-section.image-right .col-right {
    order: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .two-col-image-content-section {
        padding: 60px 0;
    }

    .two-col-image-content-section .flex-container {
        flex-direction: column!important;
        gap: 40px;
        padding: 0 15px;
    }

    /* Reset order on mobile so it always stacks properly */
    .two-col-image-content-section .col-left,
    .two-col-image-content-section .col-right {
        order: unset;
    }


    .two-col-image-content-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .two-col-image-content-section .main-content {
        margin-bottom: 20px;
    }

    .two-col-image-content-section .button-wrapper {
        margin-top: 20px;
    }
}
/* ============================================================================
   Two Column Current Development Section
   ============================================================================ */

.two-col-current-development-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.two-col-current-development-section .flex-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

/* Column layouts - reusing from two-col-image-content */
.two-col-current-development-section .col-left,
.two-col-current-development-section .col-right {
    flex: 1;
}

/* Development card wrapper styling */
.two-col-current-development-section .current-development-wrapper {
    position: relative;
    width: 100%;
}

/* Content styling - Left Column - reusing from two-col-image-content */
.two-col-current-development-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.two-col-current-development-section .main-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.two-col-current-development-section .main-content p {
    margin-bottom: 15px;
    font-family: 'Montserrat';
    letter-spacing: 0.3em;
    font-size: 15px;
    color: var(--primary-gold);
}

.two-col-current-development-section .paragraph-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.two-col-current-development-section .paragraph-content p {
    margin-bottom: 15px;
}

/* Subtitle styling if present */
.two-col-current-development-section .subtitle {
    display: block;
    font-size: 1.2rem;
    color: #C2A66A;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Button wrapper - reusing from two-col-image-content */
.two-col-current-development-section .button-wrapper {
    margin-top: 30px;
}

/* Development card wrapper styling */
.two-col-current-development-section .current-development-wrapper {
    position: relative;
    width: 100%;
}

.two-col-current-development-section .current-development-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Development Card - inheriting from existing development-card styles */
.two-col-current-development-section .development-card {
    position: relative;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
 
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0; /* Remove auto margin for this context */
}

.two-col-current-development-section .development-card:hover {
    transform: translateY(-5px);
   
}

/* Corner Flash - reusing existing styles */
.two-col-current-development-section .development-card .corner-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 0;
    border-color: #C2A66A transparent transparent transparent;
    z-index: 2;
}

.two-col-current-development-section .development-card .corner-flash span {
    position: absolute;
    top: -55px;
    left: 5px;
    color: white;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    width: 80px;
    text-align: center;
}

/* Card Image - reusing from development-card */
.two-col-current-development-section .card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.two-col-current-development-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.two-col-current-development-section .development-card:hover .card-image img {
    transform: scale(1.05);
}

.two-col-current-development-section .placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Content - reusing from development-card */
.two-col-current-development-section .card-content {
    padding: 20px 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: row;
    position: absolute;
    justify-content: space-between;
    width: 100%;
    align-content: end;
    height: 100%;
    bottom: 0;
	align-items: flex-end;
	    background: linear-gradient(180deg, rgba(0, 1, 48, 0) 50%, rgba(0, 1, 48, 1) 100%);
}

.two-col-current-development-section .card-title {
    font-size: 32px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin-bottom: 0px;
	text-align: left;
}

.two-col-current-development-section .card-location {
    font-size: 13px;
    color: #C2A66A;
	margin: 0px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-family: 'Montserrat', sans-serif;
	    text-align: left;
}

.two-col-current-development-section .card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    flex: 1;
}

.two-col-current-development-section .button {
    display: inline-block;
    padding: 12px 30px;
    background: #000130;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #000130;
    margin-top: auto;
}

.two-col-current-development-section .button:hover {
    background: transparent;
    color: #000130;
    text-decoration: none;
}

/* No current development message */
.two-col-current-development-section .no-current-development {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border: 2px dashed #ccc;
    color: #666;
}

.two-col-current-development-section .no-current-development p {
    margin: 0;
    font-size: 16px;
    font-style: italic;
}

/* Background color variations - reusing existing patterns */
.two-col-current-development-section.bg-lda-blue {
    background-color: #000130;
}

.two-col-current-development-section.bg-lda-blue h2 {
    color: white;
}

.two-col-current-development-section.bg-lda-blue .main-content,
.two-col-current-development-section.bg-lda-blue .paragraph-content {
    color: rgba(255, 255, 255, 0.8);
}

.two-col-current-development-section.bg-lda-yellow {
    background-color: #C2A66A;
}

.two-col-current-development-section.bg-lda-yellow h2 {
    color: #000130;
}

.two-col-current-development-section.bg-white {
    background-color: #ffffff;
}

/* Responsive design - match two-col-image-content exactly */
@media (max-width: 768px) {
    .two-col-current-development-section {
        padding: 60px 0;
    }

    .two-col-current-development-section .flex-container {
        flex-direction: column!important;
        gap: 40px;
        padding: 0 15px;
    }

    /* Reset order on mobile so it always stacks properly */
    .two-col-current-development-section .col-left,
    .two-col-current-development-section .col-right {
        order: unset;
    }

    .two-col-current-development-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .two-col-current-development-section .main-content,
    .two-col-current-development-section .paragraph-content {
        margin-bottom: 20px;
    }

    .two-col-current-development-section .button-wrapper {
        margin-top: 20px;
    }
}
/* ============================================================================
   Two Column with image and icon
   ============================================================================ */
/* Two Column Image Icon Content Section */
.two-col-image-icon-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.two-col-image-icon-content-section .flex-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

/* Column layouts */
.two-col-image-icon-content-section .col-left,
.two-col-image-icon-content-section .col-right {
    flex: 1;
}

/* Image wrapper styling */
.two-col-image-icon-content-section .image-wrapper {
    position: relative;
    width: 100%;
}

.two-col-image-icon-content-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Icon wrapper styling */
.two-col-image-icon-content-section .icon-wrapper {
    margin-bottom: 25px;
    text-align: left;
}

.two-col-image-icon-content-section .icon-wrapper .section-icon {
    max-width: 60px;
    height: auto;
    display: block;
}

/* Content styling */
.two-col-image-icon-content-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.two-col-image-icon-content-section .main-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.two-col-image-icon-content-section .main-content p {
    margin-bottom: 15px;
    font-family: 'Montserrat';
    letter-spacing: 0.3em;
    font-size: 15px;
    color: var(--primary-gold);
}

.two-col-image-icon-content-section .paragraph-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.two-col-image-icon-content-section .paragraph-content p {
    margin-bottom: 15px;
}

/* Subtitle styling if present */
.two-col-image-icon-content-section .subtitle {
    display: block;
    font-size: 1.2rem;
    color: #C2A66A;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Button wrapper */
.two-col-image-icon-content-section .button-wrapper {
    margin-top: 30px;
}

/* Image position variants */
.two-col-image-icon-content-section.image-right .flex-container {
    flex-direction: row-reverse;
}

/* Alternative approach - use order property for more reliable positioning */
.two-col-image-icon-content-section.image-left .col-left {
    order: 1;
}

.two-col-image-icon-content-section.image-left .col-right {
    order: 2;
}

.two-col-image-icon-content-section.image-right .col-left {
    order: 2;
}

.two-col-image-icon-content-section.image-right .col-right {
    order: 1;
}

/* Responsive design */
@media (max-width: 768px) {
    .two-col-image-icon-content-section {
        padding: 60px 0;
    }
    
    .two-col-image-icon-content-section .flex-container {
        flex-direction: column!important;
        gap: 40px;
        padding: 0 15px;
    }
    
    /* Reset order on mobile so it always stacks properly */
    .two-col-image-icon-content-section .col-left,
    .two-col-image-icon-content-section .col-right {
        order: unset;
    }
    
    .two-col-image-icon-content-section h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .two-col-image-icon-content-section .main-content {
        margin-bottom: 20px;
    }
    
    .two-col-image-icon-content-section .paragraph-content {
        margin-bottom: 20px;
    }
    
    .two-col-image-icon-content-section .button-wrapper {
        margin-top: 20px;
    }
    
    .two-col-image-icon-content-section .icon-wrapper .section-icon {
        max-width: 50px;
    }
}
/* ============================================================================
   Homepage Gallery Hero Section - Updated for 4 Items on Desktop
   ============================================================================ */

.image-gallery-hero-section {
    padding: 80px 0;
    min-height: 70vh;
    position: relative;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.gallery-hero-text {
    margin-bottom: 60px;
}

.gallery-hero-title {
    font-size: 36px;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 5px;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 600px;
    margin: 10px auto;
}

.gallery-hero-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #C2A66A;
    margin: 0;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.gallery-hero-slideshow {
    max-width: 1200px !important; /* Increased for larger 240px items */
    margin: 0 auto !important;
    position: relative !important;
    width: 100% !important;
}

.homepage-gallery-container {
    overflow: hidden !important;
    width: 100% !important;
    position: relative;
    max-width: 1020px; /* 4 items × 240px + 3 gaps × 20px = 1020px */
    margin: 0 auto;
}

.homepage-gallery-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
}

.homepage-gallery-item {
    flex: 0 0 auto !important;
    width: 240px !important;
    height: 240px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    position: relative;
}

.homepage-gallery-item:hover {
    transform: translateY(-5px);
}

.homepage-gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

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

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border: none;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.gallery-dot:hover,
.gallery-dot.active {
    background-color: #C2A66A;
    transform: scale(1.2);
}

.gallery-dot:focus {
    outline: 2px solid #C2A66A;
    outline-offset: 2px;
}

/* Background color classes */
.image-gallery-hero-section.bg-lda-blue {
    background-color: #000130;
}

.image-gallery-hero-section.bg-lda-yellow {
    background-color: #C2A66A;
}

.image-gallery-hero-section.bg-white {
    background-color: #ffffff;
}

.image-gallery-hero-section.bg-white::before {
    background: rgba(0, 1, 48, 0.5);
}

.image-gallery-hero-section.bg-white .gallery-hero-title {
    color: #000130;
}

.image-gallery-hero-section.bg-white .gallery-hero-subtitle {
    color: #C2A66A;
}

/* Loading state */
.homepage-gallery-grid.loading {
    opacity: 0.7;
}

/* Desktop (1025px+): 4 items - UPDATED */
@media (max-width: 1400px) {
    .gallery-hero-slideshow {
        max-width: 1100px !important;
    }
    
    .homepage-gallery-container {
        max-width: 940px; /* 4 items × 220px + 3 gaps × 20px = 940px */
    }
    
    .homepage-gallery-item {
        width: 220px !important;
        height: 220px !important;
    }
}

@media (max-width: 1200px) {
    .gallery-hero-slideshow {
        max-width: 1000px !important;
    }
    
    .homepage-gallery-container {
        max-width: 860px; /* 4 items × 200px + 3 gaps × 20px = 860px */
    }
    
    .homepage-gallery-item {
        width: 200px !important;
        height: 200px !important;
    }
}

/* Large Tablet (769-1024px): 3 items - UPDATED */
@media (max-width: 1024px) {
    .homepage-gallery-grid {
        gap: 15px !important;
    }
    
    .homepage-gallery-container {
        max-width: 510px; /* 3 items × 160px + 2 gaps × 15px = 510px */
    }
    
    .homepage-gallery-item {
        width: 160px !important;
        height: 160px !important;
    }
    
    .gallery-hero-title {
        font-size: 30px;
    }
    
    .gallery-hero-subtitle {
        font-size: 14px;
    }
    
    .gallery-hero-slideshow {
        max-width: 700px !important;
    }
}

@media (max-width: 900px) {
    .homepage-gallery-item {
        width: 140px !important;
        height: 140px !important;
    }
    
    .homepage-gallery-container {
       /* max-width: 450px;  3 items × 140px + 2 gaps × 15px = 450px */
		max-width: 700px;
    }
}

/* Tablet (641-768px): 3 items */
@media (max-width: 768px) {
    .homepage-gallery-grid {
        gap: 15px !important;
    }
    
    .homepage-gallery-container {
        max-width: 450px; /* 3 items × 140px + 2 gaps × 15px = 450px */
    }
    
    .homepage-gallery-item {
        width: 140px !important;
        height: 140px !important;
    }
    
    .gallery-hero-title {
        font-size: 28px;
    }
    
    .gallery-hero-subtitle {
        font-size: 13px;
    }
    
    .gallery-hero-text {
        margin-bottom: 40px;
    }
    
    .image-gallery-hero-section {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .gallery-hero-slideshow {
        max-width: 100% !important;
        padding: 0 20px;
    }
    
    .gallery-indicators {
        margin-top: 30px;
    }
}

/* Mobile (481-640px): 2 items - BIGGER */
@media (max-width: 640px) {
    .homepage-gallery-grid {
        gap: 20px !important;
    }
    
    .homepage-gallery-container {
        max-width: 380px; /* 2 items × 180px + 1 gap × 20px = 380px */
    }
    
    .homepage-gallery-item {
        width: 180px !important;
        height: 180px !important;
    }
    
    .gallery-hero-slideshow {
        padding: 0 15px;
    }
	.gallery-page-slideshow-track {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-page-slideshow-wrapper {
        padding: 0px!important;
    }
}

/* Small Mobile (≤480px): 1 item - MUCH BIGGER */
@media (max-width: 480px) {
    .homepage-gallery-grid {
        gap: 0px !important; /* No gap for single item */
    }
    
    .homepage-gallery-container {
        max-width: 240px; /* 1 item × 240px */
    }
    
    .homepage-gallery-item {
        width: 240px !important;
        height: 240px !important;
    }
    
    .gallery-hero-title {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .gallery-hero-subtitle {
        font-size: 12px;
    }
    
    .image-gallery-hero-section {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .gallery-hero-text {
        margin-bottom: 30px;
    }
    
    .gallery-indicators {
        margin-top: 25px;
        gap: 8px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-hero-slideshow {
        padding: 0 10px;
    }
}

/* Very Small Mobile (≤360px): 1 item, still big */
@media (max-width: 360px) {
    .homepage-gallery-item {
        width: 200px !important;
        height: 200px !important;
    }
    
    .homepage-gallery-container {
        max-width: 200px; /* 1 item × 200px */
    }
    
    .gallery-hero-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .gallery-hero-slideshow {
        padding: 0 5px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .homepage-gallery-grid,
    .homepage-gallery-item,
    .homepage-gallery-item img,
    .gallery-dot {
        transition: none !important;
    }
    
    .image-gallery-hero-section {
        background-attachment: scroll;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gallery-dot {
        border: 2px solid currentColor;
    }
    
    .gallery-dot.active {
        background-color: currentColor;
    }
}

/* Focus management for keyboard navigation */
.gallery-dot:focus-visible {
    outline: 2px solid #C2A66A;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .image-gallery-hero-section {
        background: none !important;
        color: #000 !important;
    }
    
    .image-gallery-hero-section::before {
        display: none;
    }
    
    .gallery-hero-title,
    .gallery-hero-subtitle {
        color: #000 !important;
    }
    
    .gallery-indicators {
        display: none;
    }
}

/* Force layout fixes for conflicts */
.homepage-gallery-container * {
    box-sizing: border-box;
}

/* Ensure proper stacking context */
.gallery-hero-slideshow {
    isolation: isolate;
}

/* Force horizontal layout override */
.homepage-gallery-grid > * {
    flex-shrink: 0 !important;
}
/* ============================================================================
   Client Testimonials Section
   ============================================================================ */

/* Main testimonials section */
.client-testimonials-section {
    padding: 80px 0;
    position: relative;
    min-height: 600px;
    background-attachment: fixed;
    overflow: hidden;
}

/* Background color classes */
.client-testimonials-section.bg-lda-blue {
    background-color: #000130;
}

.client-testimonials-section.bg-lda-yellow {
    background-color: #C2A66A;
}

.client-testimonials-section.bg-white {
    background-color: #ffffff;
}

.client-testimonials-section.bg-white * {
    color: #333333 !important;
}

.client-testimonials-section.bg-white .testimonials-nav {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: #333333;
}

.client-testimonials-section.bg-white .testimonials-nav:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.5);
}

.client-testimonials-section.bg-white .pagination-dot {
    background: rgba(0, 0, 0, 0.3) !important;
}

.client-testimonials-section.bg-white .pagination-dot:hover {
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Header styling */
.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-main-title {
    font-size: 36px;
	color: var(--primary-navy);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.testimonial-content p {
    text-align: center;
}

.testimonials-nav {
	display: none!important;
}

.testimonials-subtitle {
    margin-bottom: 70px;
    font-family: 'Montserrat';
    letter-spacing: 0.3em;
    font-size: 15px;
    color: white !important;
}

/* Slider container - CRITICAL: This is the viewport */
.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

/* Track that holds all slides - This moves left/right */
.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%; /* Will be set by JavaScript */
}

/* Individual slide - Each slide takes full width of container */
.testimonial-slide {
    width: 100%; /* Will be set by JavaScript */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Content layout within each slide */
.testimonial-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-quote-column {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 80px;
}

.testimonial-content-column {
    flex: 1;
    min-width: 0;
}

/* Quote mark styling */
.quote-mark-text {
    font-size: 4rem;
    line-height: 1;
    opacity: 0.8;
    font-family: serif;
    color: white !important;
    margin: 0;
    display: block;
}

.quote-mark-image {
    width: 60px;
    height: auto;
    opacity: 0.8;
    display: block;
}

/* Testimonial content */
.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    color: white !important;
}

.testimonial-content p {
    color: white !important;
    margin-bottom: 15px;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

.testimonial-client-name {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    color: white !important;
}

/* Navigation arrows */
.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 18px;
    outline: none;
}

.testimonials-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-nav:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.testimonials-prev {
    left: -70px;
}

.testimonials-next {
    right: -70px;
}

/* Pagination dots */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
	margin-bottom: 10px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 0; /* Square */
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.pagination-dot:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.pagination-dot.active {
    background: var(--primary-navy); /* Dark blue */
    transform: scale(1.3);
}

/* No testimonials message */
.no-testimonials {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-prev {
        left: -60px;
    }
    
    .testimonials-next {
        right: -60px;
    }
}

@media (max-width: 992px) {
    .testimonials-prev {
        left: 10px;
    }
    
    .testimonials-next {
        right: 10px;
    }
    
    .testimonials-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonial-layout {
        gap: 30px;
    }
    
    .testimonial-quote-column {
        min-width: 60px;
    }
    
    .quote-mark-text {
        font-size: 3rem;
    }
    
    .quote-mark-image {
        width: 45px;
    }
}

@media (max-width: 768px) {
    .client-testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-main-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }
    
    .testimonials-subtitle {
        font-size: 0.9rem;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    /* Mobile: Stack quote and content vertically */
    .testimonial-layout {
        flex-direction: column;
        text-align: center;
        gap: 20px;
		align-items: center;
    }
    
    .testimonial-quote-column {
        order: 1;
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .testimonial-content-column {
        order: 2;
    }
    
    .testimonial-slide {
        padding: 0 15px;
        min-height: 250px;
    }
    
    .testimonial-content {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    /* Hide navigation arrows on mobile */
    .testimonials-nav {
        display: none;
    }
    
    /* Make pagination dots slightly larger on mobile */
    .pagination-dot {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-main-title {
        font-size: 1.5rem;
    }
    
    .quote-mark-text {
        font-size: 2.5rem;
    }
    
    .quote-mark-image {
        width: 35px;
    }
    
    .testimonial-content {
        font-size: 0.95rem;
    }
    
    .testimonial-client-name {
        font-size: 0.9rem;
    }
}
/* ============================================================================
   Socials
   ============================================================================ */

.social-media-container.container {
    padding: 120px 20px;
}

.social-media .socials-icons {
    display: flex;
    gap: 12px;
}

.social-media .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-gold);; /* Yellow background */
    border-radius: 50%; /* or use a specific value like 8px for rounded square */
    transition: all 0.3s ease;
}

.social-media .social-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.social-media .social-icon:hover {
    transform: translateY(-2px);
}

section.social-media-header {
    display: flex;
    justify-content: space-between;
}

@media (max-width:768px) {
	section.social-media-header {
    flex-direction: column;
    margin-bottom: 20px;
}
}

/* ============================================================================
   Contact
   ============================================================================ */

section#contact {
    padding-bottom: 30px;
}

.form-buttons button.btn.btn-primary {
    width: 140px;
}


.contact-details a {
    text-decoration: none;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
    color: #333;
}

/* Two Column Layout */
.contact-wrapper {
    display: flex;
    align-items: flex-start;
}

.form-column {
    flex: 1;
    max-width: 600px;
}

.contact-info-column {
    flex: 0 0 350px;
    padding-top: 20px;
}

.contact-form {
    background: #fff;
    padding: 40px;
}

.contact-item.margin-left {
    margin-left: 60px;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group.full-width {
    width: 100%;
}

/* Labels */
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
}

label.checkbox-label {
    font-weight: 300;
    color: black;
    font-size: 11px;
}

/* Input Fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--primary-navy);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8a96e;
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-size: 12px;
    letter-spacing: 0.5px;
	font-weight: 200;
}

/* Textarea specific */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Group */
.checkbox-group {
    margin: 30px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 1px solid var(--primary-navy);
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
	bottom: -3px;
	margin-right: 4px;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
    background: #c8a96e;
    border-color: #c8a96e;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-label .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 3px;
    top: -1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
}

.checkbox-label:hover .checkbox-custom {
    border-color: #c8a96e;
}

/* Submit Button */
.form-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
	text-align: center;
}

.btn-primary {
    background: #c8a96e;
    color: white;
}

.btn-primary:hover {
    background: #b8996e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
}

.contact-info {
    padding: 20px 0px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 8px;
}

.contact-icon img {
    width: 29px;
    height: 29px;
    object-fit: contain;
    
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 16px;
    color: black;
    line-height: 1.4;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info-column {
        flex: none;
        max-width: none;
		width: 100%;
    }
    
    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
	
	.contact-item {
		flex-direction:column;
		align-items: center;
		text-align: center;
	}
	
	.contact-item.margin-left {
		margin: 10px auto;
	}
	
	.contact-value {
		font-size: 13px;
	}
    
   
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .checkbox-wrapper {
        align-items: flex-start;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
	
	.form-buttons button.btn.btn-primary {
    width: 100%;
		max-width: unset;
}
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
	
	.contact-wrapper {
        gap: 40px;
    }
    
    .contact-form {
        padding: 0px;
        margin: 0px;
    }
    
    .contact-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}


.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--primary-navy);
	    text-transform: capitalize;
    font-size: 13px;
}



/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s ease infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* ============================================================================
   Image Gallery Component
   ============================================================================ */

.image-gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.image-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-subtitle {
    font-size: 1rem;
    color: var(--primary-gold);
    margin: 0;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove default box shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Only show shadow on hover */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Loading placeholder */
.gallery-item.loading {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.loading::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Pagination */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.pagination-btn {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.pagination-btn:disabled:hover {
    background: transparent;
    color: var(--primary-navy);
    transform: none;
}

.pagination-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.pagination-btn.active:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-info {
    color: var(--primary-navy);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Hide prev/next arrows */
.pagination-btn.prev-btn,
.pagination-btn.next-btn {
    display: none;
}

/* Gallery Stats */
.gallery-stats {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
}

/* Lightbox styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: calc(100vw - 200px); /* Leave space for side arrows */
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px; /* Move away from image */
}

.lightbox-next {
    right: 40px; /* Move away from image */
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Background color variations */
.image-gallery-section.bg-lda-blue {
    background-color: var(--primary-navy);
}

.image-gallery-section.bg-lda-blue .gallery-title {
    color: white;
}

.image-gallery-section.bg-lda-blue .pagination-info {
    color: white;
}

.image-gallery-section.bg-lda-blue .gallery-stats {
    color: rgba(255, 255, 255, 0.8);
}

.image-gallery-section.bg-lda-yellow {
    background-color: var(--primary-gold);
}

.image-gallery-section.bg-lda-yellow .gallery-title {
    color: var(--primary-navy);
}

.image-gallery-section.bg-white {
    background-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .image-gallery-section {
        padding: 60px 0;
    }
    
    .image-gallery-container {
        padding: 0 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-pagination {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 40px;
        height: 40px;
    }
    
    .pagination-info {
        margin: 0 10px;
        font-size: 12px;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .gallery-pagination {
        gap: 5px;
    }
    
    .pagination-btn {
        padding: 6px 10px;
        min-width: 35px;
        height: 35px;
        font-size: 11px;
    }
    
    .pagination-info {
        font-size: 11px;
        margin: 0 5px;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Loading states */
.gallery-grid.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-item img,
    .pagination-btn,
    .lightbox-close,
    .lightbox-nav {
        transition: none;
    }
}

/* Focus styles for accessibility */
.gallery-item:focus,
.pagination-btn:focus,
.lightbox-close:focus,
.lightbox-nav:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .gallery-pagination,
    .lightbox-close,
    .lightbox-nav {
        display: none !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}  /* ============================================================================
   About Us Key Features Section
   ============================================================================ */

.about-us-key-features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-us-key-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-us-key-features-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-us-key-features-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-family: 'Montserrat';
    letter-spacing: 0.3em;
}

.about-us-key-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-key-feature-item {
    text-align: center;
    padding: 20px 10px;
}

.about-us-feature-image-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.about-us-feature-image {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: opacity(0.8);
    transition: all 0.3s ease;
}

.about-us-key-feature-item:hover .about-us-feature-image {
    filter: opacity(1);
    transform: translateY(-2px);
}

.about-us-feature-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-us-key-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-us-key-features-section {
        padding: 60px 0;
    }
    
    .about-us-key-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .about-us-key-features-title {
        font-size: 2rem;
    }
    
    .about-us-feature-image-wrapper {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .about-us-feature-image {
        max-width: 45px;
        max-height: 45px;
    }
    
    .about-us-feature-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-us-key-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-us-key-feature-item {
        padding: 15px 5px;
    }
    
    .about-us-feature-image-wrapper {
        height: 50px;
        margin-bottom: 12px;
    }
    
    .about-us-feature-image {
        max-width: 40px;
        max-height: 40px;
    }
    
    .about-us-feature-title {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Background color variants */
.about-us-key-features-section.bg-lda-blue {
    background-color: #000130;
}

.about-us-key-features-section.bg-lda-blue .about-us-key-features-title {
    color: white;
}

.about-us-key-features-section.bg-lda-blue .about-us-key-features-subtitle {
    color: #C2A66A;
}

.about-us-key-features-section.bg-lda-blue .about-us-feature-title {
    color: white;
}

.about-us-key-features-section.bg-lda-yellow {
    background-color: #C2A66A;
}

.about-us-key-features-section.bg-lda-yellow .about-us-key-features-title {
    color: #000130;
}

.about-us-key-features-section.bg-lda-yellow .about-us-feature-title {
    color: #000130;
}  

/* ============================================================================
   Gradient Title
   ============================================================================ */

.gradient-title-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 40px auto;
    height: 40px;
    display: flex;
    justify-content: center;
}
 .gradient-title-container {
    display: flex;
    align-items: center;
}

.gradient-title {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    padding: 20px 0;
    display: inline-block;
    position: relative;
    z-index: 2;
	font-family: 'Montserrat';
}

/* Responsive design */
@media (max-width: 768px) {
    .gradient-title-section {
        padding: 30px 0;
    }
    
    .gradient-title {
        font-size: 1.8rem;
        padding: 15px 0;
        letter-spacing: 0.1em;
    }
    
    .gradient-title-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .gradient-title {
        font-size: 1.4rem;
        padding: 12px 0;
    }
}

/* Print styles */
@media print {
    .gradient-title-section {
        background: none !important;
    }
    
    .gradient-title {
        color: #000 !important;
    }
    
    .gradient-title-container::before {
        display: none;
    }
}

/* ============================================================================
   Image Carousel Component
   ============================================================================ */

.image-carousel-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    
    margin: 0 auto;
    
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 300px; /* Fixed height to ensure square images */
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 20%; /* 5 slides visible - each 20% width */
    height: 300px; /* Fixed height to match wrapper */
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

/* Gradient fade overlays - stronger and covering more area */
.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%; /* Increased from 20% to cover more of outer images */
    z-index: 10;
    pointer-events: none;
	display: none;
}

button.carousel-nav {
    background: var(--primary-gold);
    width: 45px;
    height: 45px;
    padding: 5px;
    
}

.carousel-wrapper::before {
    left: 0;
     background: linear-gradient(to right, rgb(255 255 255) 10%, rgba(250, 250, 250, .6) 25%, rgba(248, 249, 250, .6) 20%, transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgb(255 255 255) 10%, rgba(250, 250, 250, .6) 25%, rgba(248, 249, 250, .6) 20%, transparent 100%);
	z-index: 3;
}

/* Navigation arrows - simple chevrons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-gold);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.carousel-nav:hover {
    color: rgba(194, 166, 106, 0.7);
    transform: translateY(-50%) scale(1.2);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Chevron arrows using CSS */
.carousel-nav::before {
content: '';
    width: 10px;
    height: 10px;
    border-top: 5px solid white;
    border-right: 5px solid white;
    display: block;
    border-radius: 4px;
    transition: all 0.3s 
ease;
}

.carousel-prev::before {
    transform: rotate(-135deg);
	left:3px;
	position: relative;
}

.carousel-next::before {
    transform: rotate(45deg);
	right: 3px;
	position: relative;
}

/* Remove pagination dots completely */

/* Responsive design */
@media (max-width: 1024px) {
    .carousel-wrapper {
        height: 250px;
    }
    
    .carousel-slide {
        height: 250px;
    }
    
    .carousel-nav {
        width: 25px;
        height: 25px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .image-carousel-section {
        padding: 60px 0;
    }
    
    .carousel-container {
        padding: 0 15px;
    }
    
    .carousel-wrapper {
        height: 200px;
    }
    
    .carousel-slide {
        flex: 0 0 33.333%; /* Keep 3 slides on mobile */
        height: 200px;
    }
    
    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 40%; /* Stronger gradients on mobile */
    }
    
    .carousel-nav {
        width: 25px;
        height: 25px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        height: 150px;
    }
    
    .carousel-slide {
        flex: 0 0 33.333%; /* Keep 3 slides instead of going to 1 */
        height: 150px;
    }
    
    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 45%; /* Even stronger gradients on small mobile */
    }
    
    .carousel-nav {
        width: 20px;
        height: 20px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .carousel-track,
    .carousel-slide,
    .carousel-slide img,
    .carousel-nav,
    .carousel-dot {
        transition: none;
    }
}

/* Focus management for keyboard navigation */
.carousel-nav:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

.carousel-dot:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Loading state */
.carousel-loading {
    opacity: 0.7;
    pointer-events: none;
}

.carousel-loading .carousel-nav {
    cursor: not-allowed;
    opacity: 0.5;
}

/* ============================================================================
   Developments Carousel Section - Complete Responsive Implementation
   ============================================================================ */

.developments-carousel-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.developments-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================================
   Section Headers
   ============================================================================ */

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .section-subtitle {
    font-size: 1rem;
    color: var(--primary-gold);
    margin: 0;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

/* ============================================================================
   Carousel Structure
   ============================================================================ */

.developments-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.developments-carousel-track {
    display: flex;
    align-items: stretch;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

/* ============================================================================
   Carousel Slides - Base Styling (Desktop: 3 slides)
   ============================================================================ */

.developments-carousel-slide {
    flex: 0 0 33.333%; 
    position: relative;
    overflow: visible;
    padding: 0 15px;
    display: flex;
    align-items: stretch;
}

/* ============================================================================
   Development Cards Within Carousel - Landscape Orientation
   ============================================================================ */

.developments-carousel-slide .development-card {
    width: 100%;
    height: 240px;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.developments-carousel-slide .development-card .corner-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 0;
    border-color: #C2A66A transparent transparent transparent;
    z-index: 2;
}

.developments-carousel-slide .development-card .corner-flash span {
    position: absolute;
    top: -45px;
    left: 5px;
    color: white;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    width: 70px;
    text-align: center;
}

.developments-carousel-slide .development-card .card-image {
    flex: 1;
    height: 65%;
    min-height: 156px;
    overflow: hidden;
    position: relative;
}

.developments-carousel-slide .development-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.developments-carousel-slide .development-card .card-content {
    flex-shrink: 0;
    min-height: 84px;
    padding: 12px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 1, 48, 0) 0%, rgba(0, 1, 48, 1) 100%);
   height: 50%;
}

.developments-carousel-slide .development-card .card-content section {
    width: 100%;
}

.development-card a.btn.btn-primary {
    width: auto;
    height: fit-content;
}

.developments-carousel-slide .development-card .card-content .card-title {
    font-size: 1.2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.developments-carousel-slide .development-card .card-content .card-location {
    font-size: 11px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    margin: 0px;
}

.developments-carousel-slide .development-card .card-content .btn:hover {
    background: transparent;
    color: #000130;
    text-decoration: none;
}

/* ============================================================================
   Side Fade Overlays
   ============================================================================ */

.developments-carousel-wrapper::before,
.developments-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    z-index: 10;
    pointer-events: none;
}

.developments-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(248, 249, 250, 0.8) 50%, 
        transparent 100%);
}

.developments-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(248, 249, 250, 1) 0%, 
        rgba(248, 249, 250, 0.8) 50%, 
        transparent 100%);
}

/* ============================================================================
   Navigation Arrows
   ============================================================================ */

.developments-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
	border:none;
  
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    font-size: 28px;
    line-height: 1;
}

.developments-carousel-nav:hover {
    background: #000130;
    border-color: #000130;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.developments-carousel-nav:focus {
    outline: 2px solid #C2A66A;
    outline-offset: 2px;
}

.developments-carousel-prev {
    left: -30px;
}

.developments-carousel-next {
    right: -30px;
}

/* ============================================================================
   Background Color Variations
   ============================================================================ */

.developments-carousel-section.bg-lda-blue {
    background-color: #000130;
}

.developments-carousel-section.bg-lda-blue .section-header .section-title {
    color: white;
}

.developments-carousel-section.bg-lda-blue .section-header .section-subtitle {
    color: var(--primary-gold);
}

.developments-carousel-section.bg-lda-blue .developments-carousel-wrapper::before {
    background: linear-gradient(to right, 
        rgba(0, 1, 48, 1) 0%, 
        rgba(0, 1, 48, 0.8) 50%, 
        transparent 100%);
}

.developments-carousel-section.bg-lda-blue .developments-carousel-wrapper::after {
    background: linear-gradient(to left, 
        rgba(0, 1, 48, 1) 0%, 
        rgba(0, 1, 48, 0.8) 50%, 
        transparent 100%);
}

.developments-carousel-section.bg-lda-yellow {
    background-color: #C2A66A;
}

.developments-carousel-section.bg-lda-yellow .section-header .section-title {
    color: #000130;
}

.developments-carousel-section.bg-lda-yellow .section-header .section-subtitle {
    color: #000130;
}

.developments-carousel-section.bg-lda-yellow .developments-carousel-wrapper::before {
    background: linear-gradient(to right, 
        rgba(194, 166, 106, 1) 0%, 
        rgba(194, 166, 106, 0.8) 50%, 
        transparent 100%);
}

.developments-carousel-section.bg-lda-yellow .developments-carousel-wrapper::after {
    background: linear-gradient(to left, 
        rgba(194, 166, 106, 1) 0%, 
        rgba(194, 166, 106, 0.8) 50%, 
        transparent 100%);
}

.developments-carousel-section.bg-white {
    background-color: #ffffff;
}

.developments-carousel-section.bg-white .section-header .section-title {
    color: #000130;
}

.developments-carousel-section.bg-white .section-header .section-subtitle {
    color: var(--primary-gold);
}

.developments-carousel-section.bg-white .developments-carousel-wrapper::before {
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%);
	display: none;
}

.developments-carousel-section.bg-white .developments-carousel-wrapper::after {
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%);
	display: none;
}

/* ============================================================================
   Development Grid Layout for Less Than 4 Items
   ============================================================================ */

.developments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.developments-grid-item {
    flex: 0 0 auto;
    max-width: 450px;
    width: 100%;
}

.developments-grid-item .development-card,
.developments-grid-item .development-plots-item {
    width: 100%;
    height: 300px;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}

.developments-grid-item .development-plots-image,
.developments-grid-item .card-image {
    flex: 1;
    height: 70%;
    min-height: 210px;
    overflow: hidden;
    position: relative;
}

.developments-grid-item .development-plots-image img,
.developments-grid-item .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.developments-grid-item .development-plots-content,
.developments-grid-item .card-content {
    flex-shrink: 0;
    min-height: 90px;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 1, 48, 0) 50%, rgba(0, 1, 48, 1) 100%);
    height: 100%;
    box-sizing: border-box;
}

.developments-grid-item .development-plots-info,
.developments-grid-item .card-content section {
    width: 100%;
}

.developments-grid-item .development-plots-title-plot,
.developments-grid-item .card-title {
    font-size: 1.2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.developments-grid-item .development-plots-location,
.developments-grid-item .card-location {
    font-size: 11px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
}

.developments-grid:has(.developments-grid-item:only-child) {
    justify-content: center;
}

.developments-grid:has(.developments-grid-item:only-child) .developments-grid-item {
    max-width: 450px;
}

.developments-grid:has(.developments-grid-item:nth-child(2):last-child) {
    justify-content: center;
    gap: 40px;
}

.developments-grid:has(.developments-grid-item:nth-child(2):last-child) .developments-grid-item {
    max-width: 450px;
}

.developments-grid:has(.developments-grid-item:nth-child(3):last-child) {
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.developments-grid:has(.developments-grid-item:nth-child(3):last-child) .developments-grid-item {
    max-width: 350px;
    flex: 0 0 350px;
}

.no-developments {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-developments p {
    font-size: 1.1rem;
    margin: 0;
}

.developments-carousel-section.bg-lda-blue .no-developments {
    color: rgba(255, 255, 255, 0.8);
}

.developments-carousel-section.bg-lda-yellow .no-developments {
    color: #000130;
}

/* ============================================================================
   Loading State
   ============================================================================ */

.developments-carousel-loading {
    pointer-events: none;
}

.developments-carousel-loading .developments-carousel-nav {
    cursor: not-allowed;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* Large Desktop (1400px+): 3 slides */
@media (min-width: 1400px) {
    .developments-carousel-slide {
        flex: 0 0 33.333%;
        padding: 0 20px;
    }
    
    .developments-carousel-slide .development-card {
        max-width: 400px;
        height: 250px;
    }
    
    .developments-carousel-slide .development-card .card-image {
        min-height: 162px;
    }
    
    .developments-carousel-slide .development-card .card-content {
        min-height: 88px;
        padding: 15px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-title {
        font-size: 1.3rem;
    }
}

/* Desktop (1200px - 1399px): 3 slides */
@media (max-width: 1399px) and (min-width: 1200px) {
    .developments-carousel-slide {
        flex: 0 0 33.333%;
        padding: 0 15px;
    }
    
    .developments-carousel-slide .development-card {
        max-width: 380px;
        height: 240px;
    }
    
    .developments-carousel-slide .development-card .card-image {
        min-height: 156px;
    }
    
    .developments-carousel-slide .development-card .card-content {
        min-height: 84px;
        padding: 12px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-title {
        font-size: 1.2rem;
    }
}

/* Large Tablet (992px - 1199px): 3 slides */
@media (max-width: 1199px) and (min-width: 992px) {
    .developments-carousel-slide {
        flex: 0 0 33.333%;
        padding: 0 15px;
    }
    
    .developments-carousel-slide .development-card {
        max-width: 340px;
        height: 220px;
    }
    
    .developments-carousel-slide .development-card .card-image {
        min-height: 143px;
    }
    
    .developments-carousel-slide .development-card .card-content {
        min-height: 77px;
        padding: 10px 12px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-title {
        font-size: 1.1rem;
    }
    
    .developments-carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .developments-carousel-prev {
        left: 20px;
    }
    
    .developments-carousel-next {
        right: 20px;
    }
}

/* Tablet (768px - 991px): 2 slides */
@media (max-width: 991px) and (min-width: 768px) {
    .developments-carousel-section {
        padding: 60px 0;
    }
    
    .developments-carousel-container {
        padding: 0 15px;
    }
    
    .developments-carousel-slide {
        flex: 0 0 50%;
        padding: 0 10px;
    }
    
    .developments-carousel-slide .development-card {
        max-width: 350px;
        height: 220px;
    }
    
    .developments-carousel-slide .development-card .card-image {
        min-height: 143px;
    }
    
    .developments-carousel-slide .development-card .card-content {
        min-height: 77px;
        padding: 10px 12px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-title {
        font-size: 1rem;
    }
    
    .developments-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .developments-carousel-prev {
        left: 15px;
    }
    
    .developments-carousel-next {
        right: 15px;
    }
    
    .developments-carousel-wrapper::before,
    .developments-carousel-wrapper::after {
        width: 25%;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .developments-grid:has(.developments-grid-item:nth-child(3):last-child) {
        flex-wrap: wrap;
    }
    
    .developments-grid:has(.developments-grid-item:nth-child(3):last-child) .developments-grid-item {
        flex: 1 1 100%;
        max-width: 400px;
    }
}

/* Mobile (767px and below): 1 slide */
@media (max-width: 767px) {
    .developments-carousel-section {
        padding: 50px 0;
    }
    
    .developments-carousel-container {
        padding: 0 15px;
    }
    
    .developments-carousel-slide {
        flex: 0 0 100%;
        padding: 0 15px;
    }
    
    .developments-carousel-slide .development-card {
        max-width: 400px;
        margin: 0 auto;
        height: 280px;
    }
    
    .developments-carousel-slide .development-card .card-image {
        min-height: 196px;
    }
    
    .developments-carousel-slide .development-card .card-content {
        min-height: 84px;
        padding: 10px 15px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-title {
        font-size: 1.1rem;
    }
    
    .developments-carousel-slide .development-card .corner-flash {
        border-width: 40px 40px 0 0;
    }
    
    .developments-carousel-slide .development-card .corner-flash span {
        top: -36px;
        font-size: 8px;
        width: 60px;
    }
    
    .developments-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .developments-carousel-prev {
        left: 10px;
    }
    
    .developments-carousel-next {
        right: 10px;
    }
    
    .developments-carousel-wrapper::before,
    .developments-carousel-wrapper::after {
        display: none;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .developments-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .developments-grid-item {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .developments-carousel-section {
        padding: 40px 0;
    }
    
    .developments-carousel-container {
        padding: 0 10px;
    }
    
    .developments-carousel-slide .development-card {
        max-width: 100%;
        height: 260px;
    }
    
    .developments-carousel-slide .development-card .card-image {
        min-height: 182px;
    }
    
    .developments-carousel-slide .development-card .card-content {
        padding: 8px 12px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-title {
        font-size: 1rem;
    }
    
    .developments-carousel-slide .development-card .card-content .card-location {
        font-size: 10px;
    }
    
    .developments-carousel-nav {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .section-header .section-title {
        font-size: 1.5rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.8rem;
    }
    
    .no-developments {
        padding: 40px 15px;
    }
    
    .developments-grid-item .development-card,
    .developments-grid-item .development-plots-item {
        height: 240px;
    }
}

/* Extra Small Mobile (under 400px) */
@media (max-width: 399px) {
    .developments-carousel-section {
        padding: 30px 0;
    }
    
    .developments-carousel-container {
        padding: 0 5px;
    }
    
    .developments-carousel-slide {
        flex: 0 0 100%;
        padding: 0 10px;
    }
    
    .developments-carousel-slide .development-card {
        max-width: 100%;
        height: 240px;
    }
    
    .developments-carousel-slide .development-card .card-image {
        min-height: 168px;
    }
    
    .developments-carousel-slide .development-card .card-content {
        min-height: 72px;
        padding: 8px 10px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-title {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .developments-carousel-slide .development-card .card-content .card-location {
        font-size: 9px;
        letter-spacing: 0.2em;
    }
    
    .developments-carousel-slide .development-card .card-content .btn {
        padding: 6px 10px;
        font-size: 9px;
    }
    
    .developments-carousel-slide .development-card .corner-flash {
        border-width: 35px 35px 0 0;
    }
    
    .developments-carousel-slide .development-card .corner-flash span {
        top: -32px;
        font-size: 7px;
        left: 3px;
        width: 55px;
    }
    
    .developments-carousel-nav {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .developments-carousel-prev {
        left: 5px;
    }
    
    .developments-carousel-next {
        right: 5px;
    }
    
    .section-header .section-title {
        font-size: 1.3rem;
    }
    
    .section-header .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
    
    .developments-grid-item .development-card,
    .developments-grid-item .development-plots-item {
        height: 220px;
    }
    
    .developments-grid-item .development-plots-image,
    .developments-grid-item .card-image {
        min-height: 154px;
    }
}

/* ============================================================================
   Accessibility
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    .developments-carousel-track,
    .developments-carousel-slide,
    .developments-carousel-nav,
    .developments-carousel-slide .development-card,
    .developments-carousel-slide .development-card .card-image img {
        transition: none !important;
    }
}

.developments-carousel-nav:focus-visible {
    outline: 2px solid #C2A66A;
    outline-offset: 2px;
}

.developments-carousel-wrapper:focus {
    outline: 2px solid #C2A66A;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .developments-carousel-nav {
        border-width: 3px;
    }
}
/* ============================================================================
  Developments Vimeo
   ============================================================================ */
section.vimeo-video-section {
    background-image: url(https://dev.tmuk.uk/lda/wp-content/uploads/2025/10/blue-bg.png);
    background-size: cover;
    display: flex;
    padding: 40px;
    background-repeat: no-repeat;
}

h2.video-title {
    color: white;
    font-family: 'Montserrat';
    font-size: 13px;
    margin: auto;
	text-align: center;
	margin-bottom:20px;
	text-transform: uppercase;
}

section.vimeo-video-section {
    background-image: url(https://dev.tmuk.uk/lda/wp-content/uploads/2025/10/blue-bg.png);
    background-size: cover;
    display: flex;
    padding: 40px;
    background-repeat: no-repeat;
    background-clip: 200px;
    background-size: 100% 70%;
}

.vimeo-video-wrapper {
    width: 500px;
}

.vimeo-video-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.vimeo-video-container {
    width: 500px;
    margin: 0 auto;
    
}

/* Video Title */
.video-title {
    font-size: 2rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Video Wrapper */
.vimeo-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 0;
    overflow: hidden;
  
}

/* Thumbnail Overlay */
.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.video-thumbnail-overlay:hover {
    opacity: 0.9;
}

/* Play Button */
.video-play-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    z-index: 3;
}

.video-play-button:hover {
    transform: scale(1.1);
}

.video-play-button:focus {
    outline: 2px solid #C2A66A;
    outline-offset: 5px;
    border-radius: 50%;
}

.video-play-button svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Vimeo Iframe Container */
.vimeo-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vimeo-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vimeo-video-section {
        padding: 50px 0;
    }
	
	.vimeo-video-section .container {
		width:100%;
		padding: 0px;
	}
    
    .vimeo-video-container {
        max-width: 100%;
		width: 100%;
       
    }
    
    .video-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .video-play-button svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 1.3rem;
    }
    
    .video-play-button svg {
        width: 50px;
        height: 50px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .video-thumbnail-overlay,
    .video-play-button {
        transition: none;
    }
}

/* ============================================================================
   For Sale - Updated Flexbox Layout
   ============================================================================ */

.page-new-homes-for-sale.block-builder-wrapper h1 {
    max-width: 400px;
}

.plot-card {
    display: flex;
    width: 100%;
}
section.for-sale-left {
    position: relative;
    flex: 0 0 60%; /* 55% width, no grow/shrink */
}
.plot-title{
	margin-bottom:0px;
}
.plot-image {
    object-fit: cover;
    height: 100%;
}
.for-sale-left img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.plots-grid {
    display: grid;
    gap: 30px;
}
.for-sale-left .card-content {
    position: absolute;
    bottom: 0;
    color: white;
    background: linear-gradient(180deg, rgba(0, 2, 150, 0) 0%, rgba(0, 1, 48, 1) 100%);
    width: 100%;
    padding-top: 100px;
    padding: 20px; 
	display: flex;
    justify-content: space-between;
	align-items: end;
	height: 148px;
}
.plot-content {
	background-image: url(https://dev.tmuk.uk/lda/wp-content/uploads/2025/09/for-sale-bg.png);
	color: white;
	padding:40px 30px;
    flex: 1; /* Takes remaining space (45%) */
}

.for-sale-left .plot-details .plot-features {
    gap: 20px;
}

.plot-features {
    display: flex;
    flex-direction: column;
}
.plot-details {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
} 
span.feature {
display: flex;
    gap: 20px;
    margin: 10px 0px;
    align-items: baseline;
    justify-content: left;
}

.feature\/img-container {
    width: 30px;
    display: flex;
    justify-content: center;
}

span.feature p {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin: auto 0px;
}
span.feature-style-2 p {
    margin: 0px;
    color: #ffffff;
}

span.feature-style-2 {
    display: flex;
    gap: 10px;
    font-weight: 100;
    font-size: 13px;
    margin: 0px;
}

section.arrange-viewing-block {
    margin: 30px auto;
    display: flex;
    justify-content: center;
}

span.feature img {
    display: flex;
    align-self: center;
}
.for-sale-locations {
	width:100%;
		height: 90vh;
	text-align: center;
	margin: 30px 0px;
	padding: 40px;
	background-image: url(https://dev.tmuk.uk/lda/wp-content/uploads/2025/09/location-bg.png);
}


/* Responsive design */
@media (max-width: 768px) {
	.plot-card {
        flex-direction: column;
	}
    section.for-sale-left {
        flex: none; /* Reset flex for mobile */
    }
}

.floor-plan-image img, .plot-site-plan-section img {
	margin:auto;
	width: 100%;
}

.plot-content {
	max-height: 1600px;
}

.plot-details-grid {
    display: flex;
	max-height: 1600px;
}
.single-plot-page section.title_subtitle_paragraph {
    text-align: center;
}

.plot-details-section {
	margin: 40px auto;
}

.plot-thumb {
    width: 100%;
}

.plot-thumb img {
    width: 100%;
}

.plot-gallery {
    max-height: 440px;
}

.plot-thumbnails {
    display: flex;
    width: 100%;
}
.plot-images-column {
    width: 64%;
}
.plot-images-column img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.plot-main-image #main-plot-image {
	aspect-ratio: 750 / 440;
}

.plot-gallery {
    height: 100%;
}


.plot-main-image {
    height: 100%;
    object-fit: cover;
}

/* Responsive design */
@media (max-width: 768px) {
.plot-details-grid {
    flex-direction: column-reverse;
    gap: 30px;
}
    .plot-images-column {
        width:100%;
		display: inline-grid;
        
    }
	.plot-gallery {
    max-height: 100%;
}
}
/* Shared button styles */

.plot-gallery .plot-main-image {
  position: relative; /* Ensure buttons can be absolutely positioned inside */
}


.plot-gallery .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
	background: var(--primary-gold);
}


.plot-gallery .gallery-nav:hover {
  background: rgba(0, 0, 0, 0.6);
}

.gallery-nav img {
	width: auto;
    height: 12px;
}

.plot-main-image::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg,rgba(0, 1, 48, 0.45) 0%, rgba(87, 199, 133, 0) 12%, rgba(137, 206, 116, 0) 89%, rgba(0, 1, 48, 0.45) 100%);
	display: none;
}


.plot-gallery-chevron-right {
    
    rotate: 180deg;
}

.plot-gallery .gallery-prev {
  left: 10px; /* Position on the left side */
}


.plot-gallery .gallery-next {
  right: 10px; /* Position on the right side */
}

.plot-gallery .gallery-nav span {
  font-size: 20px;
  line-height: 1;
  pointer-events: none; /* So clicks always hit button */
}


/* ============================================================================
   Floor Plans
   ============================================================================ */

section.plot-floor-plans-section {
    margin: 60px 0px;
}

section.plot-floor-plans-section h2 , section.plot-site-plan-section h2, section.development-site-plan-section h2 {
	margin-bottom: 20px;
	text-align: center;
}

div#single-plot-map {
    margin: 60px 0px;
}
/* ============================================================================
   For Sale Maps
   ============================================================================ */
#for-sale-maps {
	width:100%;
		height: 100%;
	text-align: center;
	margin: 30px 0px;
	padding: 40px;
	background-image: url(https://dev.tmuk.uk/lda/wp-content/uploads/2025/09/location-bg.png);
}

#for-sale-maps .map-container {
	max-width:1200px;
	width: 100%;
	margin: auto;
	aspect-ratio: 1.75 / 1;
}
.for-sale-maps-title {
	 color: var(--primary-navy);
	margin-top: 30px;
}

.for-sale-maps-subtitle {
	    font-family: 'Montserrat', 'Arial', sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 50px;
}

/* ============================================================================
   Plots Pagination Styles - Navy and Gold Colors
   ============================================================================ */

.plots-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.map-legend {
    background: white;
    font-size: 11px;
    display: flex;
	width: fit-content;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.map-legend img {
    width: 40px;
    margin: auto;
}


.map-legend span {
margin: auto;
    height: 100%;
    display: inline-flex;
    font-family: 'Playfair Display';
    color: black;
}

.legend-item {
    display: flex;
    gap: 10px;
}

.plots-page-numbers {
    display: flex;
    gap: 8px;
}

.plots-page-btn {
    background: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    color: white;
    padding: 12px 16px;
    min-width: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    
}

.plots-page-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
    transform: translateY(-1px);
}

.plots-page-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.plots-page-btn.active:hover {
    transform: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .plots-pagination {
        margin-top: 25px;
    }
    
    .plots-page-numbers {
        gap: 6px;
    }
    
    .plots-page-btn {
        padding: 10px 14px;
        min-width: 40px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .plots-page-btn {
        padding: 8px 12px;
        min-width: 35px;
        font-size: 12px;
    }
}
/* ============================================================================
   Development Plots Section
   ============================================================================ */

.development-plots-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.development-plots-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.development-plots-header {
    text-align: center;
    margin-bottom: 50px;
}

.development-plots-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

/* Plots Grid - 2 columns on desktop */
.development-plots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Plot Card */
.development-plots-item {
    position: relative;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.development-plots-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Status Badge - Top Left Corner */
.development-plots-status {
    position: absolute;
    top: 10px;
    left: 0;
    color: white;
    padding: 8px 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
	width: 60%;
}

/* Status color variations */
.development-plots-status.status-sold {
        background: linear-gradient(92deg, var(--primary-navy), transparent);
}

.development-plots-status.status-reserved {
    background: linear-gradient(92deg, var(--primary-navy), transparent);
}

.development-plots-status.status-for-sale,
.development-plots-status.status-available {
    background: linear-gradient(92deg, var(--primary-gold), transparent);
}

/* Plot Image */
.development-plots-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.development-plots-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.development-plots-item:hover .development-plots-image img {
    transform: scale(1.05);
}

.development-plots-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Plot Content */
.development-plots-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 1, 48, 0) 0%, rgba(0, 1, 48, 0.9) 100%);
    color: white;
    padding: 40px 25px 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* Plot Info - Left Side */
.development-plots-info {
    flex: 1;
}

/* Plot Title */
.development-plots-title-plot {
    font-size: 1.3rem;
    font-weight: 300;
    color: white;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

/* Plot Location */
.development-plots-location {
    font-size: 9px;
    color: #C2A66A;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

/* View Button - Right Side */
.development-plots-button {
    display: inline-block;
    padding: 8px 16px;
    background: #C2A66A;
    color: white;
    text-decoration: none;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid #C2A66A;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    margin-left: 15px;
}

.development-plots-button:hover {
    background: transparent;
    color: #C2A66A;
    text-decoration: none;
}

/* Pagination */
.development-plots-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.development-plots-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    border: none;
    background: rgba(0, 1, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.development-plots-pagination-dot:hover {
    background: rgba(0, 1, 48, 0.6);
    transform: scale(1.2);
}

.development-plots-pagination-dot.active {
    background: #C2A66A;
    transform: scale(1.3);
}

/* No Plots Message */
.development-plots-no-plots {
    text-align: center;
    padding: 60px 30px;
    background: #f8f9fa;
    border: 2px dashed #ccc;
    color: #666;
    margin-top: 30px;
}

.development-plots-no-plots p {
    margin: 0;
    font-size: 16px;
    font-style: italic;
}

/* Loading State */
.development-plots-grid.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    
    .development-plots-title {
        font-size: 2rem;
    }
    
    .development-plots-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .development-plots-section {
        padding: 60px 0;
    }
    
    .development-plots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .development-plots-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .development-plots-header {
        margin-bottom: 40px;
    }
    
    .development-plots-image {
        height: 220px;
    }
    
    .development-plots-content {
        padding: 30px 20px 20px 20px;
    }
    
    .development-plots-title-plot {
        font-size: 1.1rem;
    }
    
    .development-plots-button {
        padding: 6px 12px;
        font-size: 8px;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    .development-plots-title {
        font-size: 1.5rem;
    }
    
    .development-plots-image {
        height: 200px;
    }
    
    .development-plots-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .development-plots-button {
        margin-left: 0;
        align-self: flex-start;
    }
}

/* Background color variations */
.development-plots-section.bg-lda-blue {
    background-color: #000130;
}

.development-plots-section.bg-lda-blue .development-plots-title {
    color: white;
}

.development-plots-section.bg-lda-yellow {
    background-color: #C2A66A;
}

.development-plots-section.bg-lda-yellow .development-plots-title {
    color: #000130;
}

.development-plots-section.bg-white {
    background-color: #ffffff;
}

/* Print styles */
@media print {
    .development-plots-pagination {
        display: none !important;
    }
    
    .development-plots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .development-plots-item,
    .development-plots-image img,
    .development-plots-button,
    .development-plots-pagination-dot {
        transition: none;
    }
    
    .development-plots-item:hover {
        transform: none;
    }
    
    .development-plots-item:hover .development-plots-image img {
        transform: none;
    }
}

/* Focus styles for accessibility */
.development-plots-button:focus,
.development-plots-pagination-dot:focus {
    outline: 2px solid #C2A66A;
    outline-offset: 2px;
}



section#development-site-plan-container {
    max-width: 950px;
    margin: auto;
    /* width: 100%; */
}

section#development-site-plan-container img {
    width: 100%;
}


#development-key-features .container {
    background: url('https://dev.tmuk.uk/lda/wp-content/uploads/2025/09/features-bg.png');
    background-size: cover;
    background-position: center;
   
    padding: 80px 20px;
    position: relative;
	    max-width: 1200px;
    margin: auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}


section#development-features-description {
    background: var(--primary-navy);
    color: white;
}


section#development-features-description p {
    margin: 0;
    color: white;
    max-width: 950px;
	margin: auto;
    text-align: center;
}

section#development-features-description {
    padding: 50px 0px;
	max-width: 1200px;
	margin: auto;
}

#development-features-description {
	margin-top:40px;
}


#development-key-features {
	margin-bottom:30px;
}
#development-key-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

#development-key-features h2 {
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 60px;
    position: relative;
}

#development-key-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 950px;
    margin: 0 auto;
}

#development-key-features li {
    color: #ffffff;
    font-size: 1rem;
	list-style-position: inside !important;
	list-style: disc;
}



/* Responsive Design */
@media (max-width: 768px) {

    
    #development-key-features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    #development-key-features ul {
        grid-template-columns: 2fr;
        gap: 2px;
    }
    
    #development-key-features li {
        font-size: 0.95rem;
        padding: 2px 0;
    }
}

@media (max-width: 480px) {
    
    #development-key-features .container {
        padding: 0 15px;
    }
    
    #development-key-features h2 {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    #development-key-features li {
        font-size: 0.9rem;
        padding: 10px 0;
        padding-left: 25px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #development-key-features ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    #development-key-features ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================================================
   Development Image Gallery Component
   ============================================================================ */
#development-gallery {
	margin: 60px auto;
}

.development-img-gallery {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
  
    padding: 0;
}


a.view-gallery-link {
    margin: 20px auto;
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: black;
}

.development-img-gallery img {
    flex: 1;
    min-width: 0; /* Allows flex items to shrink below content size */
    height: 300px; /* Fixed height for uniform display */
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.development-img-gallery img:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */

/* Desktop (1025px+): All images in one row */
@media (min-width: 1025px) {
    .development-img-gallery img {
        height: 350px;
    }
}

/* Large Tablet (769-1024px): Maintain single row but reduce height */
@media (max-width: 1024px) {
    .development-img-gallery img {
        height: 280px;
    }
}

/* Tablet (641-768px): 2 images per row */
@media (max-width: 768px) {
    .development-img-gallery img {
        flex: 1 1 50%; /* Each image takes 50% width */
        height: 250px;
    }
}

/* Mobile (481-640px): 2 images per row, smaller height */
@media (max-width: 640px) {
    .development-img-gallery img {
        flex: 1 1 50%;
        height: 200px;
    }
}

/* Small Mobile (≤480px): Single column layout */
@media (max-width: 480px) {
    .development-img-gallery {
        flex-direction: column;
    }
    
    .development-img-gallery img {
        flex: 1 1 100%;
        height: 250px;
        width: 100%;
    }
}

/* Very Small Mobile (≤360px): Reduce height further */
@media (max-width: 360px) {
    .development-img-gallery img {
        height: 200px;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .development-img-gallery img {
        transition: none;
    }
    
    .development-img-gallery img:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .development-img-gallery {
        break-inside: avoid;
        display: block;
    }
    
    .development-img-gallery img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        page-break-inside: avoid;
    }
    
    .development-img-gallery img:hover {
        transform: none;
        box-shadow: none;
    }
}
/* ============================================================================
   Gallery Page Component
   ============================================================================ */

.gallery-page-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-page-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000130;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-page-subtitle {
    font-size: 1rem;
    color: var(--primary-gold);
    margin: 0;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

/* Development Selector */
.gallery-page-selector {
    margin-bottom: 40px;

}

.gallery-page-selector-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-page-dropdown {
    font-size: 16px;
    padding: 12px 20px;
    border: 0px;
    background-color: var(--primary-gold);
    color: white;
    border-radius: 0;
    min-width: 300px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 45px;
}

.gallery-page-dropdown:hover {
    border-color: var(--primary-gold);
}

.gallery-page-dropdown:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(194, 166, 106, 0.2);
}

.gallery-page-dropdown option {
    padding: 10px;
    font-size: 14px;
	text-transform: capitalize;
}

/* Gallery Stats */
.gallery-page-stats {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
}

.gallery-page-current-development {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-size: 16px;
}

.gallery-page-images-count {
    font-size: 14px;
    color: #666;
}

/* Gallery Grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

@media (max-width: 640px) {
	.gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
   
}
}
@media (max-width: 450px) {
	.gallery-page-grid {
    grid-template-columns: repeat(1, 1fr);
   
}
	
	.gallery-page-dropdown {
		width: 100%;
		min-width: auto;
	}
}

.gallery-page-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Loading placeholder */
.gallery-page-item.loading {
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-item.loading::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: gallery-page-spin 1s ease-in-out infinite;
}

@keyframes gallery-page-spin {
    to { transform: rotate(360deg); }
}

/* Gallery Loading State */
.gallery-page-container.loading .gallery-page-grid {
    opacity: 0.5;
    pointer-events: none;
}

.gallery-page-container.loading .gallery-page-dropdown {
    pointer-events: none;
    opacity: 0.7;
}

/* Pagination */
.gallery-page-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.gallery-page-pagination-btn {
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-pagination-btn:hover {
    background: var(--primary-navy);
    color: white;
    transform: translateY(-2px);
}

.gallery-page-pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.gallery-page-pagination-btn:disabled:hover {
    background: transparent;
    color: var(--primary-navy);
    transform: none;
}

.gallery-page-pagination-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.gallery-page-pagination-btn.active:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.gallery-page-pagination-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gallery-page-pagination-info {
    color: var(--primary-navy);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.gallery-page-pagination-dots {
    color: var(--primary-navy);
    font-weight: 600;
    padding: 0 5px;
}

/* No Images State */
.gallery-page-no-images {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.gallery-page-no-images p {
    font-size: 16px;
    margin: 0;
}

/* Lightbox styles */
.gallery-page-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-page-lightbox.active {
    display: flex;
}

.gallery-page-lightbox-content {
    position: relative;
   
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}


.gallery-page-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-page-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-page-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.gallery-page-lightbox-prev {
    left: 40px;
}

.gallery-page-lightbox-next {
    right: 40px;
}

.gallery-page-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Background color variations */
.gallery-page-section.bg-lda-blue {
    background-color: var(--primary-navy);
}

.gallery-page-section.bg-lda-blue .gallery-page-title {
    color: white;
}

.gallery-page-section.bg-lda-blue .gallery-page-selector-label {
    color: white;
}

.gallery-page-section.bg-lda-blue .gallery-page-dropdown {
    border-color: white;
    color: white;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.gallery-page-section.bg-lda-blue .gallery-page-dropdown:hover,
.gallery-page-section.bg-lda-blue .gallery-page-dropdown:focus {
    border-color: var(--primary-gold);
}

.gallery-page-section.bg-lda-blue .gallery-page-pagination-info {
    color: white;
}

.gallery-page-section.bg-lda-blue .gallery-page-stats {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-page-section.bg-lda-blue .gallery-page-current-development {
    color: white;
}

.gallery-page-section.bg-lda-yellow {
    background-color: var(--primary-gold);
}

.gallery-page-section.bg-lda-yellow .gallery-page-title {
    color: var(--primary-navy);
}

.gallery-page-section.bg-white {
    background-color: #ffffff;
}
/* Gallery Page Slideshow Styles - Actual Carousel */
.gallery-page-slideshow-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-page-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.gallery-page-slideshow-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: stretch;
    flex-wrap: nowrap;
}

.gallery-page-slideshow-item {
    flex: 0 0 auto;
    width: 360px;
    height: 270px;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.3s ease;
    display: block;
    position: relative;
}

.gallery-page-slideshow-item:hover {
    transform: translateY(-5px);
}

.gallery-page-slideshow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slideshow Controls */
.gallery-page-slideshow-prev,
.gallery-page-slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}



.gallery-page-slideshow-prev:hover,
.gallery-page-slideshow-next:hover {
    background: var(--primary-navy);
    transform: translateY(-50%) scale(1.1);
}

.gallery-page-slideshow-prev {
    left: 20px;
}

.gallery-page-slideshow-next {
    right: 20px;
}

/* Hide counter and dots */
.gallery-page-slideshow-counter,
.gallery-page-slideshow-dots {
    display: none;
}

.gallery-page-slideshow-next img , .gallery-page-slideshow-prev img  {
    width: 10px;
}
/* Tablet */
@media (max-width: 992px) {
    .gallery-page-slideshow-item {
        width: 280px;
        height: 210px;
    }
    
    .gallery-page-slideshow-track {
        gap: 15px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    
    .gallery-page-slideshow-item {
        width: 100%;
        max-width: 300px;
        height: 225px;
    }
    
    .gallery-page-slideshow-track {
        gap: 15px;
    }
    
    .gallery-page-slideshow-prev,
    .gallery-page-slideshow-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .gallery-page-slideshow-prev {
        left: 10px;
    }
    
    .gallery-page-slideshow-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-page-slideshow-item {
        width: 240px;
        height: 180px;
    }
    
    .gallery-page-slideshow-prev,
    .gallery-page-slideshow-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* New Bits for lightbox  */

.gallery-page-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.gallery-page-lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-lightbox-image-wrapper {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-page-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.gallery-page-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.gallery-page-lightbox-prev,
.gallery-page-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    border: none;
    padding: 20px;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.3s;
}

.gallery-page-lightbox-prev:hover,
.gallery-page-lightbox-next:hover {
    background: var(--primary-gold);
}

.gallery-page-lightbox-prev {
    left: 20px;
}

.gallery-page-lightbox-next {
    right: 20px;
}

.gallery-page-lightbox-prev img {
    height: 20px;
}

.gallery-page-lightbox-next img {
    
    height: 20px;
	transform: rotate(180deg);
}

.gallery-page-lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    z-index: 10001;
}