/* =========================================================
   Runwal Realty Clone Stylesheet
   Luxury Real Estate Design System
   ========================================================= */

:root {
    --gold: #AA8A4B;
    --gold-dark: #8F7239;
    --gold-light: #B6922F;
    --gold-bg: #fff7eb;
    --cream: #FFFBF0;
    --dark-blue: #0A2342;
    --text-dark: #1E1E1E;
    --text-muted: #666666;
    --border-gold: #AA8A4B;
    --border-light: #E0E0E0;
    --white: #FFFFFF;
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1480px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* Typography Helpers */
.font-luxury {
    font-family: var(--font-heading);
}

.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.border-gold {
    border-color: var(--gold) !important;
}

/* =========================================================
   Top Bar / Secondary Navigation Drawer
   ========================================================= */
.top-navigation {
    background: var(--white);
    border-bottom: 1px solid rgba(170, 138, 75, 0.2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: relative;
    z-index: 100;
}

.top-navigation .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.main-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #222;
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease;
}

.main-nav > li > a:hover {
    color: var(--gold);
}

.nav-enquire-btn {
    border: 1.5px solid var(--gold);
    color: var(--text-dark);
    padding: 0.45rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-enquire-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.nav-logo-top {
    height: 48px;
    width: auto;
}

/* Mega Dropdown Menu */
.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 1.2rem;
    z-index: 200;
    border-top: 3px solid var(--gold);
}

.main-nav > li:hover .mega-dropdown {
    display: block;
}

.mega-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mega-dropdown a:hover {
    background-color: var(--gold-bg);
    color: var(--gold);
    padding-left: 1.1rem;
}

.mega-dropdown a .arrow-circle {
    width: 22px;
    height: 22px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold);
    transition: all 0.2s ease;
}

.mega-dropdown a:hover .arrow-circle {
    background: var(--gold);
    color: #fff;
}

/* =========================================================
   Fixed Header with Menu Icon and Logo
   ========================================================= */
.site-header {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    background: rgba(10, 35, 66, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0.7rem 0;
}

.site-header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.menu-trigger:hover {
    background: rgba(170, 138, 75, 0.85);
    border-color: var(--gold);
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4.5px;
}

.hamburger-lines span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.menu-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-logo img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* =========================================================
   Fullscreen Overlay Navigation
   ========================================================= */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 35, 66, 0.97);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 3rem 2rem;
}

.nav-overlay.is-active {
    display: flex;
    opacity: 1;
}

.nav-overlay-inner {
    max-width: 1000px;
    margin: auto;
    width: 100%;
    position: relative;
}

.overlay-close-btn {
    position: absolute;
    top: -20px;
    right: 0;
    color: #fff;
    font-size: 2.2rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.overlay-close-btn:hover {
    color: var(--gold);
}

.overlay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.overlay-col h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(170, 138, 75, 0.4);
    padding-bottom: 0.5rem;
}

.overlay-col ul {
    list-style: none;
    padding: 0;
}

.overlay-col ul li {
    margin-bottom: 0.8rem;
}

.overlay-col ul li a {
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.2s ease;
    display: block;
}

.overlay-col ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

/* =========================================================
   Sticky Phone Slider Drawer
   ========================================================= */
.sticky-phone-slider {
    position: fixed;
    top: 75%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 30px 0 0 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.4s ease;
    max-width: 48px;
    overflow: hidden;
    white-space: nowrap;
}

.sticky-phone-slider.is-expanded,
.sticky-phone-slider:hover {
    max-width: 320px;
}

.phone-content {
    padding-left: 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-phone-slider.is-expanded .phone-content,
.sticky-phone-slider:hover .phone-content {
    opacity: 1;
}

.phone-content a {
    font-weight: 700;
    color: var(--white);
    margin-left: 4px;
}

.phone-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon-box i {
    font-size: 1.2rem;
}

/* =========================================================
   Hero Banner Section
   ========================================================= */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: #000;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    filter: brightness(0.9);
}

.hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 5;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.8vw, 3.2rem);
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    margin-bottom: 1rem;
}

.scroll-discover {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.scroll-discover span {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.scroll-arrow {
    animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* =========================================================
   About & Counters Section
   ========================================================= */
.about-section {
    padding: 5rem 0 3.5rem;
    background: var(--white);
    text-align: center;
}

.about-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: #111;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.about-section h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-description {
    max-width: 950px;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

/* Counters Grid */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 2.5rem 0;
    margin-bottom: 4rem;
}

.counter-item {
    text-align: center;
    position: relative;
    padding: 1rem 1.5rem;
}

.counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--gold);
    opacity: 0.4;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 600;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.counter-label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================================
   Vertical Portfolio Section ("Our Real Estate Projects")
   ========================================================= */
.portfolio-section {
    padding-bottom: 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    text-align: center;
    color: #111;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.portfolio-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 520px;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.portfolio-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 1.8rem 1.8rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: var(--white);
    transition: all 0.4s ease;
}

.portfolio-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.portfolio-card-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-card-overlay p {
    opacity: 1;
    max-height: 120px;
}

.portfolio-card-overlay .read-more {
    font-size: 0.85rem;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    display: inline-block;
    padding-bottom: 2px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* =========================================================
   Ongoing Projects Interactive Showcase
   ========================================================= */
.ongoing-projects-section {
    padding: 4rem 0 5rem;
    background: #FAF9F6;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.section-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #111;
    font-weight: 500;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    list-style: none;
    gap: 2rem;
    border-bottom: 1.5px solid var(--border-light);
    padding: 0;
    margin: 0;
}

.category-tabs li {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.35);
    padding-bottom: 0.6rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.category-tabs li.is-active {
    color: var(--gold);
}

.category-tabs li.is-active::after {
    content: "";
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

/* Slider Container */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.project-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 290px;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.project-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.06);
}

.project-card-details {
    padding: 1.4rem;
}

.project-card-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #111;
    margin-bottom: 0.6rem;
    line-height: 1.35;
    min-height: 48px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.project-location i {
    color: var(--gold);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(170, 138, 75, 0.3);
    color: var(--gold);
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--white);
}

.slider-arrow.prev {
    left: -15px;
}

.slider-arrow.next {
    right: -15px;
}

/* =========================================================
   Testimonials Section
   ========================================================= */
.testimonials-section {
    padding: 4.5rem 0;
    background: var(--white);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 290px;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.video-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

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

.video-thumb-wrap:hover img {
    transform: scale(1.05);
}

.video-play-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.video-thumb-wrap:hover .video-play-badge {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-info {
    padding: 1.2rem;
}

.testimonial-info h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.testimonial-info .location-tag {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* =========================================================
   Media & News Section
   ========================================================= */
.media-section {
    padding: 4.5rem 0;
    background: #FAF9F6;
}

.media-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 290px;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.media-card-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.media-card:hover .media-card-img img {
    transform: scale(1.05);
}

.media-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.media-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.media-card-body p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* =========================================================
   FAQ Section
   ========================================================= */
.faq-section {
    padding: 4.5rem 0;
    background: var(--white);
}

.faq-list {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid rgba(170, 138, 75, 0.4);
    padding: 1.2rem 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(170, 138, 75, 0.4);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.faq-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #111;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    display: none;
    padding-top: 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.is-open .faq-body {
    display: block;
}

/* =========================================================
   Editorial Brand Story Section ("Read More")
   ========================================================= */
.editorial-section {
    padding: 4rem 0;
    background: #FFFDF8;
    border-top: 1px solid var(--border-light);
}

.editorial-content {
    max-width: 960px;
    margin: 0 auto;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.editorial-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #111;
    margin-bottom: 1rem;
}

.read-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    background: none;
}

.read-toggle-btn:hover {
    color: var(--gold-dark);
}

.more-editorial-text {
    display: none;
    margin-top: 1.2rem;
}

/* =========================================================
   Footer Section
   ========================================================= */
.site-footer {
    background-color: var(--cream);
    padding: 4.5rem 0 2rem;
    border-top: 1px solid rgba(170, 138, 75, 0.25);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(170, 138, 75, 0.35);
    margin-bottom: 2rem;
}

.footer-brand-info {
    text-align: left;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 1.5rem;
}

.footer-info-block {
    margin-bottom: 1.4rem;
}

.footer-info-title {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.footer-info-text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid rgba(170, 138, 75, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Links Columns */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col-title {
    color: var(--gold);
    font-size: 1.05rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.6rem;
}

.footer-links-list li a {
    font-size: 0.85rem;
    color: #444;
    transition: all 0.2s ease;
}

.footer-links-list li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

/* Footer Bottom Strip */
.footer-bottom-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* =========================================================
   Modals & Popups
   ========================================================= */
/* Enquire Now Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.is-visible {
    display: flex;
}

.modal-box {
    background: var(--gold-bg);
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: modalPop 0.35s ease-out;
}

@keyframes modalPop {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.modal-left-img {
    width: 45%;
    background: url('https://runwalrealty.com/wp-content/uploads/2025/07/popupdesk.jpeg') no-repeat center center;
    background-size: cover;
}

.modal-right-form {
    width: 55%;
    padding: 2.2rem;
    text-align: left;
}

.modal-right-form h4 {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.modal-right-form h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d4c3a0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: var(--gold);
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-dark);
}

/* Video Lightbox Modal */
.video-modal-box {
    background: #000;
    max-width: 900px;
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Disclaimer Popup */
.disclaimer-box {
    background: #fff;
    border-radius: 10px;
    max-width: 650px;
    width: 100%;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border-top: 4px solid var(--gold);
    max-height: 90vh;
    overflow-y: auto;
}

.disclaimer-box h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disclaimer-btn {
    background: var(--gold);
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.5rem;
    transition: background 0.2s ease;
}

.disclaimer-btn:hover {
    background: var(--gold-dark);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 900;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.back-to-top.is-visible {
    display: flex;
}

/* =========================================================
   Responsive Breakpoints
   ========================================================= */
@media (max-width: 1024px) {
    .portfolio-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card, .testimonial-card, .media-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .top-navigation {
        display: none;
    }

    .site-header {
        top: 0;
        background: rgba(10, 35, 66, 0.95);
        padding: 0.6rem 0;
    }

    .counters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .counter-item:not(:last-child)::after {
        display: none;
    }

    .counter-item {
        border-bottom: 1px solid rgba(170, 138, 75, 0.2);
    }

    .portfolio-pillars-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 420px;
    }

    .portfolio-card-overlay p {
        opacity: 1;
        max-height: 100px;
    }

    .project-card, .testimonial-card, .media-card {
        flex: 0 0 100%;
    }

    .slider-arrow {
        display: none;
    }

    .slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .project-card, .testimonial-card, .media-card {
        scroll-snap-align: start;
    }

    .modal-box {
        flex-direction: column;
    }

    .modal-left-img {
        width: 100%;
        height: 160px;
    }

    .modal-right-form {
        width: 100%;
        padding: 1.5rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-strip {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================================
   Legal & Business Identification Styling
   ========================================================= */
.legal-brand-box {
    background: #FFFDF9;
    border: 1px solid rgba(170, 138, 75, 0.35);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin: 2.5rem auto 0;
    max-width: 1050px;
    text-align: left;
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
    position: relative;
}

.legal-brand-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
    border-radius: 8px 0 0 8px;
}

.legal-brand-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--dark-blue);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.legal-brand-lead {
    font-size: 1.02rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.legal-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    background: #FFFBF0;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(170, 138, 75, 0.2);
}

.legal-meta-item {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.legal-meta-label {
    font-weight: 600;
    color: var(--gold);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.legal-meta-val {
    color: #111;
    font-weight: 500;
}

/* Legal Page Content */
.legal-page-container {
    max-width: 960px;
    margin: 8rem auto 4rem;
    padding: 2.5rem 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid #efe8da;
}

.legal-page-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.4rem;
}

.legal-page-subtitle {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-section-block {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #444;
}

.legal-section-block h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(170, 138, 75, 0.3);
    padding-bottom: 0.3rem;
}

