:root {
    --primary-yellow: #ffcc00;
    --primary-yellow-hover: #e6b800;
    --text-dark: #333333;
    --text-grey: #666666;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --footer-bg: #4a4a4a;
    --hero-overlay: rgba(0, 0, 0, 0.1);
    --font-main: 'Genova Medium', 'Outfit', sans-serif;
}

@font-face {
    font-family: 'Genova Medium';
    src: local('Genova Medium'), local('Genova-Medium'), url('assets/fonts/Genova-Medium.woff2') format('woff2');
    /* Assuming user might install it locally or we provide it, offering robust fallback */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 20px 0 40px 0;
    /* Added bottom padding for gradient fade */
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align to top */
    padding-top: 10px;
    /* Slight offset */
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    /* padding: 25px 40px 20px 40px; */
    /* Extended padding for branding area */
    margin-top: -30px;
    /* Pull to top edge */
    border-radius: 0 0 10px 10px;
    /* Rounded bottom only */
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.logo-image {
    height: 110px;
    /* Increased size */
    width: auto;
    object-fit: contain;
    margin-top: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-top: 12px;
    /* Visual align with Customer Portal button text */
}

/* ... existing styles ... */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
}

/* Gradient Overlay for Visibility */
/* Gradient Overlay Removed */

/* Footer */
footer {
    background-color: #555;
    /* The user feedback shows a dark grey background. Keep this or slightly darker. */
    /* Looking at Image 1, it's a solid dark grey. #555 is reasonable. */
    background-color: #666;
    /* Maybe a bit lighter to match specific grey? Let's stick to #555 or #505050 */
    background-color: #585858;
    padding: 60px 0;
    color: var(--white);
    border-top: 15px solid var(--primary-yellow);
    /* Yellow top border as seen in image */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top */
    flex-wrap: wrap;
    gap: 40px;
}

/* Footer Logo Logic */
/* Footer Logo Logic */
/* Reset container for footer logo */
footer .logo {
    display: block;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}

.footer-logo-image {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    height: 120px;
    /* Adjusted to a reasonable size, 200px might be huge? User said 200px in diff. I will respect 200px if that was user intent, but verify. User snippet showed 200px. */
    height: 200px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
    object-position: left;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
    text-align: left;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.consult-box {
    background-color: var(--white);
    color: #555;
    padding: 30px;
    border-radius: 6px;
    width: 300px;
    min-height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.consult-box h3 {
    font-size: 2rem;
    color: #555;
    font-weight: 400;
    margin-top: 10px;
}

.address-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.address-text strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Footer Contact Info (Below Box) */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.toll-free {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-yellow);
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-top: 12px;
    /* Align with button */
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-yellow-hover);
}

.header-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Ensure dropdown anchors here */
    width: 180px;
    /* Fixed width to ensure button and dropdown match */
}

.customer-portal-btn {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    width: 100%;
    /* Fill container */
    text-align: center;
    /* Left align text as per image? Image shows center/left. Let's do Center for button */
    transition: background-color 0.3s;
    margin-bottom: 0;
    /* Remove gap */
}

.header-right:hover .customer-portal-btn {
    background-color: var(--primary-yellow-hover);
}

.login-options {
    background-color: #808080;
    /* Medium Grey */
    color: white;
    padding: 15px;
    font-size: 0.85rem;
    display: none;
    /* Hidden by default */
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Show on Hover */
.header-right:hover .login-options {
    display: flex;
}

.login-options a {
    color: white;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.login-options span {
    color: #ddd;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    /* Adjust as needed */
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Fallback */
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    /* Anchor house to bottom */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        padding-top: 150px;
        /* Space for fixed/absolute header */
        padding-bottom: 50px;
    }

    .hero-content {
        justify-content: flex-start;
        align-items: center;
        height: auto;
    }
}

.hero-headline {
    margin-top: -100px;
    font-size: 3rem;
    line-height: 1.1;
    color: #333;
    /* Darker for better contrast on white */
    font-weight: 400;
    max-width: 450px;
    /* Slight increase for padding */
    background-color: rgba(255, 255, 255, 0.35);
    padding: 30px;
    border-radius: 2px;
    backdrop-filter: blur(2px);
    /* -webkit-text-stroke removed */
}

@media (max-width: 768px) {
    .hero-headline {
        margin-top: 0;
        font-size: 2rem;
        text-align: center;
        max-width: 90%;
        padding: 20px;
    }
}

.hero-headline strong {
    color: var(--primary-yellow);
    font-weight: 600;
}

/* Hero Enquiry Form */
.hero-enquiry-form-container {
    position: absolute;
    bottom: 100px;
    right: 15%;
    z-index: 10;
    width: 320px;
}

.hero-enquiry-form {
    background-color: rgba(0, 0, 0, 0.5);
    /* backdrop-filter: blur(10px); */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    margin-bottom: 25px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.form-header h2 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
}

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

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-bottom-color 0.3s;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    border-bottom-color: var(--primary-yellow);
}

.submit-btn {
    width: 100%;
    background-color: #feba27;
    /* Vibrant yellow/orange icon from image */
    color: #000;
    border: none;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #e5a51a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-enquiry-form-container {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 350px;
        margin: 40px auto 0;
        padding: 0;
    }

    .hero-enquiry-form {
        padding: 20px;
    }
}

/* About Section */
.about-section {
    padding: 50px 0;
    background-color: var(--white);
    overflow: hidden;
    /* For the image overlap effect if needed */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.about-content {
    flex: 1;
    z-index: 2;
}

.about-text-box {
    background-color: #888;
    /* Solid grey as per image 2 */
    padding: 40px;
    padding-right: 150px;
    /* Space for image overlap */
    border-radius: 8px;
    color: var(--white);
    width: 120%;
    /* Extend to right */
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.about-text-box h2 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 1.2rem;
    color: #888;
    font-weight: 500;
}

.about-image {
    flex: 1;
    position: relative;
    z-index: 2;
    /* On top of text box */
    margin-left: -100px;
    /* Pull left to overlap */
    display: flex;
    align-items: center;
    /* Center image vertically if needed */
}

.about-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    /* Adjusted transform to frame it nicely */
    transform: scale(1.1);
}

/* Header refined */
.header-right {
    align-items: flex-start;
    /* Reset align */
}

.customer-portal-btn {
    width: 100%;
    margin-bottom: 0;
    border-radius: 2px 2px 0 0;
}

.login-options {
    width: 100%;
    background-color: #777;
    border-radius: 0 0 2px 2px;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 12px;
    position: relative;
    line-height: 1.2;
}

.login-options a {
    font-weight: 600;
    font-size: 0.7rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.login-options span {
    font-size: 0.65rem;
    color: #ddd;
}

/* Projects Section */
.projects-section {
    padding: 50px 0 50px;
    background-color: var(--white);
}

.projects-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.project-dropdown-wrapper {
    position: relative;
    /* This creates the context for absolute positioning */
}

.dropdown-btn {
    background-color: #777;
    color: var(--white);
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 240px;
    text-align: center;
    white-space: nowrap;
}

/* Active state (for Current Projects primarily) or just styling */
.dropdown-btn.active {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.project-dropdown-wrapper:hover .dropdown-btn {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

/* The Dropdown List */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    /* Directly below the button */
    left: 0;
    width: 100%;
    /* Match button width */
    background-color: var(--primary-yellow);
    z-index: 10;
    margin-top: 5px;
    /* Slight gap? Or 0 if attached. Image shows attached-ish, maybe 0 */
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Show on hover */
.project-dropdown-wrapper:hover .dropdown-content {
    display: block;
}

.project-list-item {
    padding: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}

.project-list-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Testimonials Section */
.testimonials-header {
    background-color: #555;
    padding: 15px 0;
    text-align: center;
}

.testimonials-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 600;
}

.testimonials-body {
    background-color: var(--primary-yellow);
    padding: 60px 0;
}

.testimonial-slider-container {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    /* Constraints width */
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Will be controlled by JS for infinite loop illusion, or just slide 100% */
}

.testimonial-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: calc(50% - 15px);
    /* 2 items visible with gap */
    margin-right: 30px;
    /* Gap */
    flex-shrink: 0;
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.testimonial-content h3 {
    font-size: 1.5rem;
    color: #444;
    line-height: 1.2;
}

.testimonial-content span {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-size: 0.9rem;
    color: #555;
    background-color: #888;
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--white);
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        /* 1 item visible */
        margin-right: 0;
    }
}

/* Gallery & Map */
/* Gallery & Map */
/* Gallery & Map */
.gallery-section {
    padding: 60px 0;
    background-color: var(--white);
}

.gallery-grid {
    display: flex;
    gap: 0;
    /* Merged: No gap */
    height: 400px;
    border: 20px solid #808080;
    /* Thick Grey Frame matching image */
    box-sizing: border-box;
    /* Include border in width */
    border-radius: 20px;
    /* Rounded Corners */
    overflow: hidden;
    /* Clip contents */
    padding: 0;
    /* Override container padding to remove white space */
    max-width: 100%;
    /* Or keep container width but remove padding inner? */
    /* If we use .container, it has a max-width. We want that. 
       But we don't want the padding affecting the internal content relative to the border. 
       Actually, if border is on this element, padding pushes content inside. 
       So padding: 0 is correct relative to border. 
    */
}

.gallery-item {
    overflow: hidden;
    position: relative;
    /* Ensure child borders are visible? */
}

/* Skyscraper 30% */
.gallery-item.skyscraper {
    flex: 3;
}

/* Map 70% */
.gallery-item.map-view {
    flex: 7;
}

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

.gallery-item iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.skyscraper {
    border-right: 20px solid #808080;
    /* Vertical divider between image and map */
}

.skyscraper img {
    filter: grayscale(100%);
}

.map-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-overlay-text h3 {
    font-size: 3rem;
    /* Larger */
    font-weight: 900;
    color: #c0392b;
    /* Deep Red/Brown */
    text-transform: uppercase;
    /* White stroke effect using text-shadow */
    text-shadow:
        2px 2px 0 #fff,
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
    line-height: 1;
    margin: 0;
}

.map-overlay-text .lang-tamil {
    font-size: 2.5rem;
    /* Tamil text slightly smaller or same */
    margin-top: -5px;
}

.map-overlay-text span {
    color: #c0392b;
    font-weight: 800;
    font-size: 1.5rem;
    text-shadow: 2px 2px 0 #fff, -1px -1px 0 #fff, 1px 1px 0 #fff;
    margin-top: 5px;
    display: block;
}

/* Footer styles moved to top/consolidated. ensuring no duplicates */
/* Responsiveness */

.consult-box h3 {
    font-size: 1.5rem;
    color: #555;
    font-weight: 500;
}

.enquire-btn {
    background-color: var(--primary-yellow);
    border: none;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: lowercase;
    /* as in image "enquire now" */
    align-self: flex-start;
    cursor: pointer;
}

/* Responsiveness */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        /* Add mobile menu later if needed, or simple stack */
    }

    .hero-headline {
        font-size: 2.5rem;
        margin-top: 0;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        transform: none;
    }

    .about-stats {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .enquire-btn {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .search-bar {
        flex-direction: column;
    }

    .search-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
}

/* ========================================= */
/* MOBILE MENU IMPLEMENTATION */
/* ========================================= */

/* Hamburger Menu - Hidden on Desktop */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: #444;
    cursor: pointer;
    background: transparent;
    padding: 5px 10px;
}

/* Nav Menu Wrapper - Desktop Layout */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
    justify-content: flex-end;
}

/* Responsiveness for Mobile Menu */
@media screen and (max-width: 900px) {
    /* Increased breakpoint to catch overlap earlier */

    .nav-links {
        display: flex;
        /* Override previous display:none if present */
    }

    /* Show Hamburger */
    .hamburger {
        display: block;
        position: absolute;
        /* Absolute to place it comfortably */
        right: 20px;
        top: 30px;
        /* Align with Logo vertical center approx */
    }

    /* Mobile Nav Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
        /* Slide in */
    }

    /* Sidebar Logo or Close button could be added here, but clicking outside closes */

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 40px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: #333;
    }

    .header-right {
        align-items: center;
        width: 100%;
        margin-right: 0;
        /* Reset margins */
        display: flex;
        flex-direction: column;
    }

    .customer-portal-btn {
        width: 80%;
        padding: 15px;
        font-size: 1rem;
    }

    /* Ensure Logo stays visible on header */
    header .logo {
        position: relative;
        z-index: 1001;
        /* Above drawer? No, drawer is 999. Logo is in header 100. */
        /* If drawer covers header, logo might be covered. */
        /* But drawer is right aligned. Logo is left. It's fine. */
    }

    /* Login options usually hover, but on mobile make them visible if menu is active? */
    .login-options {
        position: static;
        display: flex;
        /* Always show in drawer */
        width: 80%;
        background: #f5f5f5;
        box-shadow: none;
        margin-top: 10px;
        padding: 15px;
        border-radius: 8px;
    }

    .header-right:hover .login-options {
        display: flex;
    }
}

/* Sub Hero for Inner Pages */
.sub-hero {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
}

/* ========================================= */
/* ABOUT PAGE STYLES */
/* ========================================= */

.about-page-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 600;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text-content {
    flex: 1;
}

.about-text-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text-content p {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image-content {
    flex: 1;
}

.about-image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 350px;
    /* Uniform height */
}


/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vm-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.vm-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.vm-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-content p {
    font-size: 1.05rem;
    color: var(--text-grey);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 40px 30px;
    }
}

/* Vertical Buttons Section */
.vertical-buttons-section {
    padding: 20px 0 80px;
    background-color: var(--white);
}

.vertical-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.vertical-btn {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background-color: #555;
    /* Dark Grey like finished projects */
    color: var(--white);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.vertical-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles for About Page */
@media (max-width: 900px) {

    .about-row,
    .about-row.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about-text-content h2 {
        font-size: 1.8rem;
    }

    .about-image-content img {
        height: auto;
        max-height: 300px;
    }

    .vertical-buttons-container {
        width: 100%;
        padding: 0 20px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.slide-left {
    transform: translateX(-50px);
}

.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================= */
/* CONTACT PAGE STYLES */
/* ========================================= */

.contact-page-section {
    padding: 60px 0;
    background-color: var(--white);
}

.contact-split-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-address-box {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-address-box h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.address-details p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-extra-info h3 {
    font-size: 1.2rem;
    color: var(--primary-yellow-hover);
    margin-bottom: 10px;
}

.contact-form-box {
    flex: 1.2;
    /* Slightly wider */
}

.quick-contact {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.qc-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qc-item i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    background-color: #333;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.qc-item div span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.qc-item div strong {
    font-size: 1.1rem;
    color: #333;
}

.contact-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.submit-btn {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: var(--primary-yellow-hover);
}

@media (max-width: 900px) {
    .contact-split-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* ========================================= */
/* BLOG PAGE STYLES */
/* ========================================= */

.blog-layout-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-top: 40px;
}

.blog-main {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 120px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 10px;
    display: inline-block;
}

.sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px 20px;
    text-align: left;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sidebar-btn:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateX(5px);
}

/* Grid for Main Content */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #032e54;
    margin: 20px 20px 10px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.blog-card:hover .blog-title {
    color: var(--primary-yellow-hover);
}

.blog-thumb {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.08);
}

.blog-content {
    padding: 0 20px 20px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.read-more-btn {
    background-color: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--text-dark);
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    /* Very high to be over everything */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.close-modal:hover {
    background-color: var(--primary-yellow);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #032e54;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #444;
}

/* Properties Page Styles */
.properties-section {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.property-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

/* Tactile Click Effect */
.property-card:active {
    transform: scale(0.97) translateY(-4px);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-details {
    padding: 20px;
    flex-grow: 1;
}

.property-details h3 {
    font-size: 1.2rem;
    color: #032e54;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.property-card:hover .property-details h3 {
    color: var(--primary-yellow-hover);
}

.property-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.property-price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.view-details-link {
    color: var(--primary-yellow-hover);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .blog-layout-container {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
        position: static;
        order: -1;
        margin-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 250px;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .properties-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Property Details Page (Dark Theme) */
.details-page {
    background-color: #333333;
    color: #ffffff;
}

.details-page header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    position: fixed;
}

.details-page header .logo,
.details-page .nav-links a {
    background-color: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.details-page .nav-links a:hover {
    color: var(--primary-yellow) !important;
}

.details-page .logo-image {
    filter: brightness(0) invert(1);
}

.details-page .hamburger {
    color: #ffffff;
    z-index: 1002;
}

.details-page .hamburger.active {
    color: #333333;
}

.details-page.menu-open .logo-image {
    filter: none;
}

@media screen and (max-width: 900px) {
    .details-page .nav-links a {
        color: #333333 !important;
    }

    .details-page .nav-links a:hover {
        color: var(--primary-yellow) !important;
    }

    .details-page .nav-menu {
        background-color: #ffffff;
        padding-top: 120px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .details-page .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        padding: 0;
    }

    .details-page .nav-links li a {
        display: block;
        padding: 15px;
        transition: background 0.3s;
    }

    .details-page .nav-links li a:active,
    .details-page .nav-links li a:hover {
        background-color: var(--primary-yellow);
        color: #000000 !important;
    }

    .details-page .nav-links li:last-child {
        border-bottom: none;
    }

    .details-page .header-right {
        padding-top: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.project-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.project-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 0.4) 50%, rgba(34, 34, 34, 0) 100%);
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-title-area h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.project-highlights {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.highlight-item i {
    color: var(--primary-yellow);
    margin-right: 5px;
}

.project-price-badge {
    text-align: right;
}

.price-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.price-value span {
    font-size: 1.5rem;
}

.status-badge {
    background-color: #4caf50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.details-section {
    padding: 80px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.details-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.details-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
}

.overview-meta {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item .meta-label {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-right: 10px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #333;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-yellow);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    margin-left: 15px;
    margin-bottom: 20px;
}

.call-btn:hover,
.brochure-btn:hover {
    transform: translateY(-3px);
}

.brochure-btn:hover {
    background-color: var(--primary-yellow-hover);
}

@media (max-width: 576px) {
    .brochure-btn {
        margin-left: 0;
    }
}

.enquiry-card {
    background-color: #333333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.enquiry-card h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.sidebar-form input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    color: white;
    margin-bottom: 25px;
    outline: none;
    font-family: var(--font-main);
}

.sidebar-form input:focus {
    border-bottom-color: var(--primary-yellow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.details-submit-btn {
    width: 100%;
    background-color: var(--primary-yellow);
    color: #000;
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-main);
}

.details-submit-btn:hover {
    background-color: var(--primary-yellow-hover);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.amenities-section {
    background-color: #2a2a2a;
}

.section-desc {
    max-width: 800px;
    margin-bottom: 50px;
    opacity: 0.8;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 40px;
    text-align: center;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.amenity-item:hover .amenity-icon {
    background-color: var(--primary-yellow);
    color: #000;
    transform: scale(1.1);
}

.amenity-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

.details-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-yellow);
    color: #000;
}

.plan-image-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.plan-image-container:hover {
    transform: scale(1.02);
}

.plan-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    display: block;
}

.zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.plan-image-container:hover .zoom-hint {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: var(--primary-yellow);
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .project-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .project-price-badge {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .project-title-area h1 {
        font-size: 2.5rem;
    }

    .project-hero {
        height: auto;
        padding-top: 150px;
    }

    /* Absolute Final Overrides for Contact Page Gallery */
    .gallery-grid {
        flex-direction: column !important;
        height: auto !important;
    }

    .gallery-item.skyscraper,
    .gallery-item.map-view {
        height: 300px !important;
        flex: none !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }

    .skyscraper {
        border-right: none !important;
        border-bottom: 20px solid #808080 !important;
    }
}


/* ========================================= */
/* GALLERY PAGE */
/* ========================================= */

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-yellow);
}

.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}
