/* Source: style_CSS/style.css */
@font-face {
    font-family: 'Dita Wd Medium';
    src: url('<?php echo esc_url( get_parent_theme_file_uri( '/assets/Dita Medium.woff2' ) ); ?>') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dita Wd Regular';
    src: url('<?php echo esc_url( get_parent_theme_file_uri( '/assets/Dita Medium.woff2' ) ); ?>') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Backgrounds */
    --bg-black: #050505;
    --bg-white: #f8f9fafc;
    --bg-off-white: #fffffffc;
    --bg-light: #dee2e6;


    /* Accents */
    --accent-blue: #3a5fe4;
    --accent-light-blue: #3a5fe4;
    --accent-turq: #84d2df;

    /* Glass */
    --glass: ;
    --glass-border: ;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Text */
    --text-black: #000000;
    --text-white: #FFFFFF;
}

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

body {
    font-family: 'Dita Wd Medium', 'Outfit', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

.offset-section {
    margin-top: 4rem;
}

/* Spacing Classes */
.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Typography */

p {
    font-family: 'Dita Wd Regular';
}

button {
    font-family: 'Dita Wd Regular';
}

h1,
h2,
h3,
h4 {
    font-family: 'Dita Wd Medium';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Section Basics */

@media screen and (min-width: 768px) {
    section {
        /* padding: 220px 5%; */
        position: relative;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 10px 5%;
    }
}

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

/* Buttons */
.rpah-glass-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.rpah-glass-btn:hover {
    background: var(--accent-light-blue);
    /* Using your green hex! */
    transform: translateY(-3px);
}

.rpah-filled-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 30px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rpah-filled-btn:hover {
    background: var(--accent-light-blue);
    /* Using your green hex! */
    transform: translateY(-3px);
    color: white;
}

.rpah-filled-dark-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #000000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rpah-filled-dark-btn:hover {
    background: var(--bg-light);
    /* Using your green hex! */
    transform: translateY(-1px);
    color: var(--bg-black);
}

.rpah-fill-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 12px 30px;
    background: var(--bg-black);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.rpah-fill-btn:hover {
    background: var(--accent-light-blue);
    /* Using your green hex! */
    transform: translateY(-3px);
}

/* Transitions */
html {
    scroll-behavior: smooth;
}

section {
    /* Adjust the 80px to match the height of your header */
    scroll-margin-top: 80px;
}


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    /* Covers 40% of the viewport height */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 500;
    /* Ensures it sits on top of background images */
    pointer-events: none;
    /* Crucial: allows you to click buttons "under" the fade */
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body.header-hidden::before {
    opacity: 0;
}

body {
    position: relative;
    /* Ensures the pseudo-element stays attached to the body */
    margin: 0;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lazy Loading with performance placeholders */
.lazy-section {
    /* Removed content-visibility: auto as it causes issues with hash navigation and jumps */
    contain-intrinsic-size: 800px;
    /* Placeholder to prevent layout shifts */
}

.rpah-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rpah-badge::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent-turq);
}

/* Source: style_CSS/responsive.css */
:root {
    /* Backgrounds / Text */
    --bg-black: #050505;
    --bg-white: #f8f9fa;
    --bg-off-white: #e9ecef;
    --bg-white-clear: #ffffff;

    /* Accents */
    --accent-blue: #3a5fe4;
    --accent-dark-blue: #0044ef;
    --accent-light-blue: #00b1ef;
    --accent-turq: #00bfff80;

    /* Text */
    --text-black: #000000;
    --text-white: #FFFFFF;
    --text-gray: #808080;

}

/* 1. HERO BANNER RESPONSIVE */
@media (max-width: 768px) {
    .hero-banner {
        height: auto !important;
        min-height: 100vh;
        padding: 120px 20px 60px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .hero-content {
        margin-top: 0 !important;
    }

    .hero-content-split {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .hero-split1,
    .hero-split2 {
        width: 100% !important;
    }

    .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
        text-align: left !important;
    }

    .hero-content p {
        font-size: 1.1rem !important;
        text-align: left !important;
    }

    .hero-glass-card {
        top: 0 !important;
        padding: 30px 20px !important;
        border-radius: 24px !important;
        margin-top: 20px !important;
        min-width: 22rem !important;
    }

    .hero-search-title {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
        text-align: left !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
    }

    .hero-buttons a {
        width: 100% !important;
        text-align: center !important;
    }

    .hero-category {
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin: 1.5rem 0 !important;
    }

    .hero-category-button {
        margin: 0 !important;
        flex: 1 1 calc(50% - 8px);
        font-size: 0.8rem !important;
        padding: 10px !important;
    }
}

@media (max-width: 1122px) {
    .hero-category {
        display: grid !important;
        margin: 2rem 0rem;
        gap: 5px;
    }
}

@media (max-width: 1000px) {
    .intro-right {
        margin: 4rem;
        width: 50%;
    }

    .intro-left {
        margin: 2rem;
        width: 50%;
        place-content: center;
    }

    .intro-card-container {
        padding: 4rem 2rem;
        background: var(--bg-white-clear);
        border-radius: 30px;
    }
}

/* 2. INTRO SECTION RESPONSIVE */
@media (max-width: 768px) {
    .intro-container {
        flex-direction: column !important;
        padding: 40px 15px !important;
        gap: 40px !important;
    }

    .intro-left,
    .intro-right {
        width: 100% !important;
        margin: 0 !important;
    }

    .intro-title {
        font-size: 2.4rem !important;
        text-align: left !important;
    }

    .intro-card-container {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }

    .intro-card-content {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .intro-text-note {
        margin-left: 0 !important;
        margin-top: 10px !important;
    }
}

/* 3. IMAGE CARDS RESPONSIVE */
@media (max-width: 768px) {
    .rpah-cards-container {
        padding: 20px !important;
        gap: 20px !important;
    }

    .rpah-card {
        height: 350px !important;
        flex: none !important;
        width: 100% !important;
        border-radius: 16px !important;
    }

    .rpah-title {
        font-size: 1.4rem !important;
    }
}

/* 4. VISITOR SECTION TABS */
@media (max-width: 768px) {
    .visitor-tabs {
        overflow-x: auto;
        justify-content: center !important;
        padding-bottom: 15px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .visitor-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 10px 15px !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }

    .tab-btn.active::after {
        bottom: -16px !important;
    }
}

@media (min-width: 769px) and (max-width: 1000px) {
    .search-input-group input {
        font-size: 1.25rem !important;
    }
}

/* 5. DIRECTORY DETAIL PANEL */
@media (max-width: 768px) {

    .content-stage {
        padding: 1rem !important;
    }

    /* DIRECTORY SEARCHBAR RESPONSIVE */
    .directory-search-wrapper {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
    }

    .search-input-group input {
        font-size: 1.25rem !important;
    }

    .search-actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .department-dropdown-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 10px !important;
        font-size: 0.7rem !important;
    }

    .filter-dropdown-wrapper {
        width: 100% !important;
    }


    .sidebar-content {
        padding: 1rem !important;
        display: block;
    }

    .directory-detail-panel {
        width: 100vw !important;
        right: -100vw !important;
    }

    .directory-detail-panel.active {
        right: 0 !important;
    }

    .detail-header {
        padding: 80px 25px 20px !important;
    }

    .doc-name {
        font-size: 2rem !important;
    }

    .detail-body {
        padding: 0 25px 40px !important;
    }

    .detail-footer {
        padding: 20px 25px 40px !important;
        flex-direction: column !important;
    }

    .action-btn {
        width: 100% !important;
    }
}

/* 6. LEASING SLIDEOUT */
@media (max-width: 768px) {
    .slideout-panel {
        width: 100% !important;
        max-width: 100% !important;
        padding: 80px 25px 40px !important;
    }

    .slideout-title {
        font-size: 1.2rem !important;
    }
}

/* 7. REVIEWS SECTION */
@media (max-width: 768px) {
    .reviews-nav {
        padding: 40px !important;
    }

    .review-quote {
        font-size: 20px !important;
        color: var(--text-gray);
    }

    .reviews-container {
        flex-direction: column !important;
        padding: 40px 20px !important;
    }

    .reviews-left {
        width: 100% !important;
        height: 300px !important;
        margin-bottom: 30px !important;
    }

    .reviews-right {
        width: 100% !important;
        padding: 0 !important;
    }

    .review-card {
        padding: 30px 25px !important;
    }

    .review-text {
        font-size: 1.25rem !important;
    }
}

/* 8. FOOTER ADJUSTMENTS */
@media (max-width: 768px) {
    .site-footer {
        padding: 0 !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .footer-info,
    .footer-contact,
    .footer-links-col {
        width: 100% !important;
        padding: 40px 25px !important;
        border-bottom: 1px solid var(--footer-border) !important;
    }

    .footer-bottom-container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .footer-management {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .management-text {
        text-align: center !important;
    }
}

/* Source: components_CSS/components.css */
:root {
    /* Backgrounds / Text */
    --bg-black: #050505;
    --bg-white: #f8f9fa;
    --bg-off-white: #e9ecef;
    --bg-white-clear: #ffffff;

    /* Accents */
    --accent-blue: #3a5fe4;
    --accent-dark-blue: #0044ef;
    --accent-light-blue: #00b1ef;
    --accent-turq: #00bfff80;

    /* Text */
    --text-black: #000000;
    --text-white: #FFFFFF;
    --text-gray: #808080;

}

/* Hero Banner */

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Important: keeps the image from leaking out */
}

.hero-split1 {
    width: 60%;
    margin-right: 2rem;
}

.hero-split2 {
    width: 40%;
}


.hero-buttons {
    display: flex;
    gap: 25px;
    align-items: left;
    justify-content: left;
}

.hero-header-logo {
    width: 200px;
    margin-bottom: 2rem;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This is the magic property for HTML images and videos! */
    object-fit: cover;
    object-position: center;
    z-index: -2;
    /* Sends it to the very back */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
    z-index: -1;
    /* Sits between the image and the text */
}

/* Hero Image Slider */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

/* Hero Content */
.hero-title {
    text-transform: uppercase;
    font-size: xxx-large;

}

@media (max-width: 880px) {
    .hero-title {
        font-size: xx-large;

    }
}

.hero-search-title {
    font-size: x-large;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Glass Card Base Styling */
.hero-glass-card {
    position: relative;
    top: 20%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
    color: var(--bg-white);
    min-width: 26rem;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.hero-search-input {
    padding: 1rem;
    color: #ffffff;
    /* Glass Effect */
    background: rgba(214, 214, 214, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(248, 249, 250, 0.3);
    border-radius: 20px;
    font-size: 1rem;

}

.hero-search-input::placeholder {
    color: white;
}

.hero-category {
    display: flex;
    margin: 2rem 0rem;
}

@media (max-width: 1000px) {
    .hero-category {
        display: grid;
        margin: 2rem 0rem;
        gap: 5px;
    }
}


.hero-category-button {
    padding: 0.5rem;
    color: #ffffff;
    /* Glass Effect */
    background: rgba(214, 214, 214, 0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(248, 249, 250, 0.3);
    border-radius: 15px;
    margin: 0px 5px;
}

.hero-category-button:hover {
    background: var(--accent-blue);
    color: var(--text-white);
    transition: 0.6s;
}

.hero-content-split {
    display: inline-flex;
}

.hero-content-directory {
    text-align: left;
    color: var(--text-white);
    z-index: 1;
    margin-top: 2rem;
}

.hero-content {
    text-align: left;
    color: var(--text-white);
    z-index: 1;
    max-width: 90% !important;
    margin-top: 4rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    /* Scales size based on screen width */
    font-weight: 400;
    letter-spacing: -2px;
    line-height: normal;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-weight: 300;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
}


/* Section Container */
.card-section {
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3-Column Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 110px;
    max-width: 1100px;
    width: 100%;
}

/* Glass Card Base Styling */
.glass-card {
    position: relative;
    padding: 40px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-white);
    color: var(--bg-black);

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

/* Card Hover State */
.glass-card:hover {
    transform: scale(1.05);
    background-color: var(--bg-black);
    color: var(--bg-white);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.25),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.5);
}

/* Glass Card Base Styling */
.info-card {
    position: relative;
    padding: 40px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-off-white);
    color: var(--bg-black);

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

/* Card Hover State */
.info-card:hover {
    transform: scale(1.05);
    background-color: var(--bg-black);
    color: var(--bg-white);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.25),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.5);
}

/* Thick Corners (Reused Logic) */
.corner-card {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 5px solid var(--accent-blue);
    transition: all 0.4s ease;
    pointer-events: none;
}

/* Positioning Corners Outside Card */
.top-left {
    top: -12px;
    left: -12px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 12px;
}

.top-right {
    top: -12px;
    right: -12px;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 12px;
}

.bottom-left {
    bottom: -12px;
    left: -12px;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 12px;
}

.bottom-right {
    bottom: -12px;
    right: -12px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 12px;
}

/* Spreading Animation on Hover */
.glass-card:hover .top-left {
    top: -22px;
    left: -22px;
}

.glass-card:hover .top-right {
    top: -22px;
    right: -22px;
}

.glass-card:hover .bottom-left {
    bottom: -22px;
    left: -22px;
}

.glass-card:hover .bottom-right {
    bottom: -22px;
    right: -22px;
}

/* Typography */
.card-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.card-content:hover p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Underline Animation for Card Link (Center-out) */
.card-link {
    display: inline-block;
    color: var(--accent-light-blue);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    padding-bottom: 5px;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-light-blue);
    transition: width 0.3s ease;
}

.card-link:hover::after {
    width: 100%;
}


/* Image Cards */

.rpah-cards-container {
    display: flex;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.rpah-card {
    position: relative;
    flex: 1;
    min-width: 250px;
    height: 450px;
    /* Upright rectangle */
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* The image filling the box */
.rpah-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Standard static overlay to make text pop */
.rpah-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Hover overlay: Fades from bottom to middle */
.rpah-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--accent-blue) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.rpah-card:hover::after {
    opacity: 1;
}

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

/* Content Positioning */
.rpah-card-content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    z-index: 3;
    color: #ffffff;
}

.rpah-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.rpah-subtitle {
    margin: 10px 0 20px 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Glass Button Style */
.rpah-glass-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

.rpah-glass-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Scrolling Slideshow */

.rpah-slideshow-container {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    padding: 40px 0;
    position: relative;
}

.rpah-slideshow-track {
    display: flex;
    width: calc(400px * 8);
    /* (Image width * total number of images) */
    animation: scroll 80s linear infinite;
}

.rpah-slideshow-track img {
    width: 600px;
    /* Adjust width as needed */
    height: 350px;
    object-fit: cover;
    margin: 0 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


/* Keyframes for the infinite loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Translate by half the total width of the track */
        transform: translateX(calc(-620px * 4));
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .rpah-slideshow-track img {
        width: 300px;
        height: 200px;
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-320px * 4));
        }
    }
}

/* Into Section */

.intro-container {
    display: flex;
    background: var(--bg-white);
    padding: 0rem 2rem;

}

.intro-left {
    margin: 4rem;
    width: 50%;
    place-content: center;
}

.intro-right {
    margin: 4rem;
    width: 50%;
}

@media (max-width: 1000px) {
    .intro-right {
        margin: 4rem;
        width: 50%;
    }

    .intro-left {
        margin: 2rem;
        width: 50%;
        place-content: center;
    }

    .intro-card-container {
        padding: 4rem 2rem;
        background: var(--bg-white-clear);
        border-radius: 30px;
    }
}

.intro-card-container {
    padding: 4rem 4rem;
    background: var(--bg-white-clear);
    border-radius: 30px;
}

/* Intro Section - Left Card */

.intro-hours-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-turq);
    cursor: pointer;
    transition: 0.3s;
}

/* Intro Section - Right Card */

.intro-card-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.intro-card-pill {
    background: var(--bg-off-white);
    border-radius: 20px;
    padding: 0.6rem;
    width: fit-content;
    align-items: center;
    display: none;
}

.intro-card-line {
    border-bottom: 1px solid;
    border-color: var(--bg-white);
    width: 100%;
    display: inline-block;
}

/* Intro Section - typography */

.intro-title {
    display: block;
    font-size: 3rem;
    line-height: normal;
}

.intro-title-black {
    color: var(--bg-black);
}

.intro-title-gray {
    color: var(--text-gray);
}

.intro-title-blue {
    color: var(--accent-light-blue);
}

.intro-text-p {
    color: var(--text-gray);
    font-size: 1.4rem;
}

.intro-text-note {
    color: var(--text-gray);
    margin-left: 2.6rem;
    font-size: medium;
}

.intro-text-hours {
    color: var(--text-gray);
    font-size: small;
}

.intro-card-text {
    margin-left: 1rem;
}

.intro-card-title {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.blue-text {
    color: #3a5fe4;
}

/* Source: components_CSS/header.css */
/* Main Header Layout */
/* Logo in Top Left */
.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 20;
}

.header-logo {
    position: fixed;
    top: 3rem;
    left: 1rem;
    width: 310px;
    z-index: 9999;
    transition: transform 0.3s ease;
    cursor: pointer;
    max-width: 22%;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Centered Glass Header */
.glass-header {
    position: fixed;
    left: 75%;
    top: 50px;
    transform: translateX(-50%);

    width: 600px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;

    /* Transitions */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1000;

    /* 1. Darken the glass slightly for contrast */
    background: rgba(20, 20, 20, 0.4);

    /* 2. Add a shadow to the container to separate it from the white page */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);

    /* 3. Ensure border is visible but subtle */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover State: Scale and Glow */
.glass-header:hover {
    /* Must keep translateX(-50%) so it stays centered while scaling */
    transform: translateX(-50%) scale(1.08);

    /* Light blue glow effect */
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.2),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    border-color: var(--accent-light-blue);
}

/* Thick Corner Brackets (Poking Outside) */
.corner {
    position: absolute;
    width: 35px;
    height: 25px;
    border: 10px solid;
    /* Thick light blue */
    transition: all 0.4s ease;
    pointer-events: none;
}

/* Positioning Brackets to poke OUTSIDE */
.top-left {
    top: -12px;
    left: -12px;
    border-right: none;
    border-bottom: none;
    border-color: #3a5fe3;
}

.top-right {
    top: -12px;
    right: -12px;
    border-left: none;
    border-bottom: none;
    border-color: #5677e7;
}

.bottom-left {
    bottom: -12px;
    left: -12px;
    border-right: none;
    border-top: none;
    border-color: #83d1df;
}

.bottom-right {
    bottom: -12px;
    right: -12px;
    border-left: none;
    border-top: none;
    border-color: #3a5fe3;
}

/* Brackets Spread Out on Hover */
.glass-header:hover .top-left {
    top: -20px;
    left: -20px;
}

.glass-header:hover .top-right {
    top: -20px;
    right: -20px;
}

.glass-header:hover .bottom-left {
    bottom: -20px;
    left: -20px;
}

.glass-header:hover .bottom-right {
    bottom: -20px;
    right: -20px;
}

/* Nav Links */
nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 0;
}

/* The Underline (Growing from Center) */
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;

    /* Center the starting point */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--bg-white);
    transition: width 0.3s ease-in-out;
    box-shadow: 0 0 8px rgba(3, 121, 217, 0.4);
}

/* Grow width to 100% on hover */
nav ul li a:hover::after {
    width: 100%;
}

/* Text glow on individual item hover */
nav ul li a:hover {
    color: white;
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 35px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--accent-blue);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger transition to X when active */
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    justify-content: flex-end;
}

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

.mobile-menu-content {
    width: 80%;
    height: 100%;
    background: #ffffff;
    padding: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.mobile-logo {
    height: 45px;
    width: auto;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--accent-blue);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav ul li a {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--accent-blue);
}

/* Header Animation: Hide on Scroll */
.glass-header.header-hidden {
    transform: translateX(-50%) translateY(-150px);
    opacity: 0;
    pointer-events: none;
}

.header-logo.header-hidden {
    transform: translateY(-150px);
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1189px) {
    .glass-header {
        left: 70% !important;
    }
}

@media (max-width: 1024px) {
    .glass-header {
        width: 80%;
        left: 50% !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .header-logo {
        display: none;
    }
}

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

    .header-logo {
        top: 1.5rem;
        left: 1.5rem;
        width: 140px;
        max-width: 50%;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Source: components_CSS/footer.css */
:root {
    --footer-bg: #FFFFFF;
    --footer-bottom-bg: #F9FAFB;
    --footer-border: rgba(0, 0, 0, 0.05);
    --footer-text-muted: rgba(0, 0, 0, 0.5);
    --footer-text-heading: #3a5fe4;

    /* Backgrounds */
    --bg-black: #050505;
    --bg-white: #f8f9fafc;
    --bg-off-white: #fffffffc;
    --bg-light: #dee2e6;


    /* Accents */
    --accent-blue: #3a5fe4;
    --accent-light-blue: #3a5fe4;
    --accent-turq: #84d2df;

    /* Glass */
    --glass: ;
    --glass-border: ;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Text */
    --text-black: #000000;
    --text-white: #FFFFFF;
}

.site-footer {
    background-color: var(--footer-bg);
    padding: 0rem;
    border-top: 1px solid var(--footer-border);
    margin-top: 2rem;
}

.footer-container {
    margin: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: start;
    background: #f9f9f9;
}

/* Info Column (Left) */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--bg-white);
    padding: 2rem;
    height: -webkit-fill-available;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--footer-text-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-black);
    line-height: 1.5;
}

.info-disclaimer {
    font-size: 0.8rem;
    color: var(--footer-text-muted);
    font-style: italic;
    margin-top: 10px;
    max-width: 320px;
}

/* Contact Column (Middle) */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #ffffff;
    padding: 2rem;
}

.footer-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-phone-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-black);
    text-decoration: none;
    transition: var(--transition);
}

.footer-phone-large:hover {
    color: var(--accent-blue);
}

.footer-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-form-input,
.footer-form-textarea {
    width: 100%;
    padding: 25px 18px;
    background: #ffffff;
    /* border: 1px solid rgba(0, 0, 0, 0.08); */
    border-radius: 0px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 0px;
    border-left: 0px;
}

.footer-form-input:focus,
.footer-form-textarea:focus {
    background: #FFF;
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 4px 15px rgba(58, 95, 228, 0.1);
}

/* Links Column (Right) */
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-self: end;
    background-color: var(--bg-white);
    padding: 2rem;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
}

.footer-links-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--footer-text-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-self: flex-start;
    top: 0px;
}

.footer-nav a {
    font-size: 1rem;
    color: var(--text-black);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.7;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-blue);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--footer-bottom-bg);
    padding: 40px 5%;
    border-top: 1px solid var(--footer-border);
}

.footer-bottom-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-management {
    display: flex;
    align-items: center;
    gap: 20px;
}

.management-logo {
    max-width: 120px;
    opacity: 0.8;
}

.management-text {
    font-size: 0.85rem;
    color: var(--footer-text-muted);
    line-height: 1.4;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--footer-text-muted);
    line-height: 1.4;
}



.management-text strong {
    color: var(--text-black);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-links-col {
        justify-self: start;
        grid-column: span 2;
        flex-direction: row;
        width: 100%;
        /* justify-content: space-between; */
        align-items: center;
        border-top: 1px solid var(--footer-border);
        padding-top: 40px;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links-col {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

/* Source: sections_CSS/directory.css */
:root {
    --sb-collapsed: 70px;
    --sb-expanded: 260px;
    --sidebar-width: var(--sb-collapsed);
    --glass-white: rgba(255, 255, 255, 0.08);
    --glass-black: rgba(0, 0, 0, 0.08);

    /* Backgrounds */
    --bg-black: #050505;
    --bg-white: #f8f8f8;
    --bg-off-white: #F2F2F1;
    --bg-light: #dee2e6;

    /* Accents */
    --accent-blue: #3a5fe4;
    --accent-light-blue: #00b1ef;
    --accent-turq: #00bfff80;

    /* Text */
    --text-black: #000000;
    --text-white: #FFFFFF;
    --text-gray: #808080;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text-black);
}

.logo-mark-img {
    position: absolute;
    width: -webkit-fill-available;
    margin: 0.5rem;
}

.clinic-app-container {
    display: flex;
    width: 100vw;
    height: 100%;
    overflow: hidden;
}

.search-trigger {
    /* background: black; */
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: 6rem;
    z-index: 5 !important;
}

/* WHEN SIDEBAR IS HOVERED: Hide the trigger button */
.directory-sidebar:hover .search-trigger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Prevents clicking the ghost of the button */
}

.search-trigger button {
    z-index: 5 !important;
}

/* Sidebar Scheduling / Department Slideout */
.department-slideout {
    position: fixed;
    top: 0;
    left: -100%;
    width: clamp(320px, 50vw, 600px);
    height: 100%;
    background: var(--bg-white);
    z-index: 1000;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.department-slideout.active {
    left: 0;
}

.close-dept-slideout {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1001;
}

.close-dept-slideout:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 0 30px 40px;
    display: flex;
    flex-direction: column;
}

.filter-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.filter-btn {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--glass-black);
    color: var(--accent-blue);
    border-color: var(--accent-light-blue);
}

/* Main Content Area */
.content-stage {
    flex: 1;
    position: relative;
    padding: 60px 80px;
    overflow-y: visible;
}

.directory-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    transition: opacity 0.3s, transform 0.3s;
}

.directory-list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.directory-list-item:hover {
    border-color: var(--accent-light-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(60, 81, 128, 0.08);
}

.dir-col {
    display: flex;
    flex-direction: column;
}

.dir-cat-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 6px;
    opacity: 0.7;
}

.dir-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-black);
    margin: 5px 0 10px;
    line-height: 1.2;
}

.dir-desc-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1rem;
}

.dir-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

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

.meta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--accent-light-blue);
}

.meta-texts {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.meta-primary {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-black);
}

.meta-secondary {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.dir-col-action {
    position: absolute;
    top: 25px;
    right: 25px;
}

.dir-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-off-white);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--accent-blue);
    transition: all 0.2s;
}

.directory-list-item:hover .dir-arrow-btn {
    background: var(--accent-blue);
    color: white;
    transform: rotate(-45deg);
}

/* --- Slideout Panel & Overlay --- */
.directory-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: -webkit-fill-available;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.directory-detail-panel {
    position: fixed;
    top: 0;
    right: -100%;
    /* Initially hidden off-screen to the right */
    width: clamp(320px, 40vw, 750px);
    max-width: 100%;
    height: -webkit-fill-available;
    background: var(--bg-white);
    z-index: 1000;
    padding: 0;
    /* Padding moved to children for better scroll behavior */
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.directory-detail-panel.active {
    right: 0;
}

.close-slideout {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1001;
}

.close-slideout:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.directory-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.detail-header {
    margin-bottom: 20px;
    padding: 60px 40px 20px;
}

.detail-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-light-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.doc-name {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.detail-body {
    /* flex: 1; */
    overflow-y: auto;
    padding: 0 40px 40px;
    margin-bottom: 20px;
}

.doc-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.detail-info-grid {
    display: grid;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.detail-footer {
    padding: 30px 40px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 15px;
    background: var(--bg-white);
    /* Ensure buttons have solid background */
}

.action-btn {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.book-btn {
    background: var(--accent-blue);
    color: white;
}

.book-btn:hover {
    background: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.call-btn {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.call-btn:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 81, 128, 0.1);
}

/* Glass Card Base Styling */
.directory-card {
    position: relative;
    padding: 40px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-white);
    color: var(--bg-black);

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

/* Card Hover State */
.directory-card:hover {
    transform: scale(1.05);
    background-color: var(--bg-white);
    color: var(--bg-black);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.25),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.5);
}

.directory-detail-panel.active {
    bottom: 0px;
}

/* Reusing your corner styles */
.card-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid var(--accent-light-blue);
    transition: 0.4s;
}

.card-top-left {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

.card-top-right {
    top: -8px;
    right: -8px;
    border-left: none;
    border-bottom: none;
}

.card-bottom-left {
    bottom: -8px;
    left: -8px;
    border-right: none;
    border-top: none;
}

.card-bottom-right {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}

/* --- Directory Main Header Styling --- */
.directory-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.search-dir-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.directory-search-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 15px;
}

.search-icon {
    width: 24px;
    height: 24px;
    color: #ccc;
    flex-shrink: 0;
}

.search-input-group input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-black);
    font-size: 1.8rem;
    font-weight: 600;
    outline: none;
    padding: 0;
}

.search-input-group input::placeholder {
    color: #d1d5db;
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.department-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-black);
    cursor: pointer;
    transition: all 0.2s;
}

.department-dropdown-btn:hover {
    border-color: var(--accent-light-blue);
    color: var(--accent-blue);
}

.filter-dropdown-wrapper {
    position: relative;
}

.time-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.time-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.time-option {
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-black);
    cursor: pointer;
    transition: background 0.2s;
}

.time-option:hover {
    background: var(--bg-off-white);
    color: var(--accent-blue);
}

.time-option.active {
    background: var(--accent-blue);
    color: white;
}

/* Active Filters Pills */
.active-filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    min-height: 32px;
}

.filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: default;
}

.filter-pill .remove-pill {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.filter-pill .remove-pill:hover {
    opacity: 1;
}

.clear-filters-pill {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    cursor: pointer;
}

.clear-filters-pill:hover {
    background: var(--accent-blue);
    color: white;
}

/* Responsiveness */
@media (max-width: 900px) {
    .directory-grid {
        grid-template-columns: 1fr;
    }
}

/* Typography */

.doc-name {
    color: var(--text-black);
}

.doc-desc {
    color: var(--text-black);
}

.directory-title-sub {
    font-size: 1rem;
    color: var(--text-black);
}

/* (Old popup states removed as they are now handled by .directory-detail-panel.active slider) */

.btn-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

.btn-text {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
}

/* --- Directory Footer Action Button --- */
.directory-footer-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-bottom: 2rem;
}

.rpah-outline-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-black);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.rpah-outline-btn:hover {
    background: var(--bg-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(60, 81, 128, 0.15);
}

/* Source: sections_CSS/leasing.css */
:root {
    /* Backgrounds */
    --bg-black: #050505;
    --bg-white: #f8f9fafc;
    --bg-off-white: #fffffffc;
    --bg-light: #dee2e6;


    /* Accents */
    --accent-blue: #3a5fe4;
    --accent-light-blue: #3a5fe4;
    --accent-turq: #84d2df;

    /* Glass */
    --glass: ;
    --glass-border: ;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Text */
    --text-black: #000000;
    --text-white: #FFFFFF;

    --text-muted: #6c757d;
    --border-light: rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.leasing-section {
    padding: 120px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.leasing-container {
    max-width: 1200px;
    width: 100%;
}

.leasing-header {
    margin-bottom: 60px;
}

.leasing-main-title {
    font-size: 4rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -2px;
}

.leasing-main-title .blue-text {
    color: var(--accent-blue);
    font-weight: 700;
}

/* Availabilities List */
.availabilities-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.suite-item {
    display: grid;
    grid-template-columns: 320px 1fr 280px;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: all 0.4s ease;
}

.suite-item:last-child {
    border-bottom: none;
}

.suite-image-wrapper {
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.suite-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100%;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.suite-slider::-webkit-scrollbar {
    display: none;
}

.suite-slider.active {
    cursor: grabbing;
}

.suite-image {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.suite-item:hover .suite-image {
    transform: scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 20px;
    border-radius: 10px;
}

/* Lightbox Gallery */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.close-lightbox {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2002;
    transition: transform 0.3s ease;
}

.close-lightbox:hover {
    transform: scale(1.1);
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 80%;
    position: relative;
    gap: 40px;
}

.lightbox-image-container {
    max-width: 85%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

#lightboxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-arrow:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: scale(1.1);
}

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

    .lightbox-arrow {
        width: 44px;
        height: 44px;
    }

    .lightbox-image-container {
        max-width: 70%;
    }
}

/* Center Content */
.suite-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suite-level {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.level-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
}

.suite-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 5px 0;
    letter-spacing: -1px;
}

.suite-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
}

/* Right Detail Column */
.suite-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Apply Link/Button */
.apply-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apply-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.apply-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.apply-link:hover .apply-arrow {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateX(5px);
}

.apply-link:hover .apply-text {
    color: var(--accent-blue);
}

/* Slideout Overlay */
.slideout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 10002;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.slideout-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #fff;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 60px 50px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.slideout-overlay.active .slideout-panel {
    right: 0;
}

.close-slideout {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-slideout:hover {
    color: #1a1a1a;
}

.slideout-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.slideout-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.5;
}

.slideout-subtitle .highlight {
    color: var(--accent-blue);
    font-weight: 700;
}

.slideout-form {
    /* display: flex; */
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(58, 95, 228, 0.05);
}

.apply-submit-btn {
    margin-top: 20px;
    padding: 18px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.apply-submit-btn:hover {
    background-color: #2a4ec8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(58, 95, 228, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .suite-item {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }

    .suite-details {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .apply-link {
        grid-column: span 2;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .suite-details {
        display: contents;
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .leasing-main-title {
        font-size: 2.5rem;
    }

    .suite-item {
        grid-template-columns: 1fr;
    }

    .suite-details {
        grid-template-columns: 1fr;
    }

    .suite-title {
        font-size: 2.5rem;
    }

    .slideout-panel {
        padding: 40px 30px;
    }
}

/* --- Practice Hero Section --- */
.practice-hero {
    display: flex;
    height: 700px;
    background-color: var(--accent-blue);
    /* Dark navy background */
    color: #fff;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 4rem;
}

.hero-title .blue-text {
    color: var(--accent-turq);
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.25rem;
    max-width: 400px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.availability-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}

.btn-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.availability-btn:hover .btn-arrow {
    background: var(--accent-turq);
    border-color: var(--accent-blue);
}

.hero-right {
    flex: 1.2;
    position: relative;
    background-image: url('../assets/Leasing/Room-315/Rpah-Leasing-Room-315-Room2.png');
    background-size: cover;
    background-position: center;
}

.hero-right-wayfinder {
    flex: 1.2;
    position: relative;
    background-image: url('../assets/General/RPAH-Medical-Centre-Overview.jpg');
    background-size: cover;
    background-position: center;
    width: 70vh;
}

/* THE FIX: The Gradient Overlay */
.hero-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    /* Only needs to cover the left edge where it meets the text */
    height: 100%;
    /* Gradient from the dark background color to transparent */
    background: linear-gradient(to right, var(--accent-blue) 0%, #3a5fe400 100%);
    z-index: 1;
}

.hero-right-wayfinder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    /* Only needs to cover the left edge where it meets the text */
    height: 100%;
    /* Gradient from the dark background color to transparent */
    background: linear-gradient(to right, var(--accent-blue) 0%, #3a5fe400 100%);
    z-index: 1;
}

.stat-overlay {
    position: absolute;
    bottom: 60px;
    right: 60px;
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); */
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media screen and (max-width: 768px) {
    .stat-overlay {
        bottom: 30px;
        padding: 15px 15px;
    }

    .practice-hero {
        flex-direction: column;
        height: 700px !important;
    }


}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-blue);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);

}

/* --- Ecosystem & Features --- */
.ecosystem-section {
    padding: 40px 20px;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.ecosystem-tagline {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    color: #333;
    max-width: 700px;
    margin: 0 auto 100px auto;
    line-height: 1.2;
}

.blue-text-italic {
    color: var(--accent-blue);
    font-style: italic;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-light);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ccc;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #333;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Responsive Fixes */
@media (max-width: 400px) {
    .hero-left {
        padding: 20px 20px;
    }
}

@media (min-width: 401px) and (max-width: 768px) {
    .hero-left {
        padding: 80px 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-left {
        padding: 140px 20px;
    }
}

@media (max-width: 992px) {
    .practice-hero {
        flex-direction: column;
        height: auto;
    }

    .hero-right,
    .hero-right-wayfinder {
        height: 400px;
        background-image: none;

    }

    .hero-title {
        font-size: 3.5rem;
    }

    .ecosystem-tagline {
        font-size: 1.5rem;
    }
}

/* styles.css */
body {
    font-family: 'Dita Wd Medium';
    background-color: #f9f9f9;
}

/* Source: sections_CSS/visitor.css */
/* Visitor Section & Tabs Styling */

.visitor-section {
    padding: 80px 0;
    width: 100%;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.visitor-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.visitor-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-grow: 1;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-dark-blue);
}

.tab-btn {
    font-family: 'Dita Wd Medium';
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn svg {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--accent-dark-blue);
}

.tab-btn.active svg {
    opacity: 1;
    color: var(--accent-light-blue);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-dark-blue);
}

/* Content Blocks */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.wayfinder-tab-content {
    display: contents;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Public Transport Styling */
.pt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pt-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.pt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.pt-title-group h3 {
    font-size: 1.5rem;
    margin: 0;
}

.pt-title-group p {
    color: var(--text-gray);
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.time-pill {
    font-family: 'Dita Wd Regular';
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.steps-list {
    position: relative;
    padding-left: 40px;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 30px;
    bottom: 30px;
    width: 1px;
    background: #e2e8f0;
}

.step-item {
    position: relative;
    padding-bottom: 30px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    left: -40px;
    width: 30px;
    height: 30px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    z-index: 1;
}

.step-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

.step-item p strong {
    color: var(--accent-dark-blue);
    font-weight: 600;
}

/* Parking Styling */
.parking-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.parking-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.parking-icon-box {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent-dark-blue);
}

.parking-info h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: #1e293b;
}

.parking-info h3 strong {
    font-weight: 700;
    display: block;
}

.parking-info p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.entry-section {
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
    margin-top: auto;
}

.entry-section h4 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #1e293b;
    margin-bottom: 15px;
}

.entry-section p {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.parking-link {
    color: var(--accent-dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.parking-link:hover {
    transform: translateX(5px);
}

.parking-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Facilities Styling */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.facility-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    gap: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.facility-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon-box svg {
    width: 24px;
    height: 24px;
    color: var(--accent-dark-blue);
}

.facility-content {
    flex-grow: 1;
}

.facility-badge {
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.facility-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e293b;
}

.facility-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Map Integration Styles */
.section-controls {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
}

.show-map-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-dark-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.show-map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--accent-dark-blue);
    color: white;
}

.show-map-btn svg {
    transition: transform 0.4s ease;
}

.show-map-btn.active {
    background: var(--accent-dark-blue);
    color: white;
}

.show-map-btn.active svg {
    transform: rotate(180deg);
}

.visitor-layout-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0;
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
}

.visitor-tabs-content {
    flex: 1;
    min-width: 0;
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.map-section {
    width: 100%;
    height: 500px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* Override global section padding */
    margin: 0;
}

.map-viewport {
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
}

#map {
    width: 100%;
    height: 100%;
}

/* Map Active State - Simplified for always-on display */
.visitor-layout-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading state */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    z-index: 5;
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Loader Animation */
.loader-ripple {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.loader-ripple div {
    position: absolute;
    border: 3px solid var(--accent-light-blue);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1.2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
    animation-delay: -0.6s;
}

@keyframes loader-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 56px;
        height: 56px;
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .visitor-section.map-active .visitor-tabs-content {
        padding-left: 20px;
    }
}

@media (max-width: 1100px) {
    .visitor-header {
        margin: 0 auto 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .visitor-tabs {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 5px;
        font-size: 0.75rem;
    }

    .visitor-section.map-active .visitor-layout-container {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .visitor-section.map-active .map-viewport {
        width: 100%;
        height: 500px;
        border-radius: 40px 40px 0 0;
        transform: translateY(50px);
    }

    .visitor-section.map-active .map-viewport.active {
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .visitor-section {
        padding: 60px 0;
    }

    .parking-card {
        grid-template-columns: 1fr;
    }

    .parking-image {
        order: -1;
        min-height: 250px;
    }

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

@media (max-width: 500px) {
    .visitor-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }

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

    .facility-card {
        flex-direction: column;
    }

    .facility-badge {
        position: static;
        width: fit-content;
        margin-top: 10px;
    }

    .show-map-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Source: sections_CSS/reviews.css */
/* Reviews Section */
/* Reviews Section */
.reviews-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
    background: #fff;
    padding: 0 !important;
    overflow: hidden;
}

.reviews-left {
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
}

.reviews-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.reviews-left-content {
    position: relative;
    z-index: 2;
}

.reviews-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reviews-badge::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent-turq);
}

.reviews-left h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -1px;
}

.reviews-left h2 span {
    display: block;
    font-weight: 400;
}

.reviews-right {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.review-card-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.review-card {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.review-quote {
    font-size: 32px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 120px;
    color: #f0f0f0;
    z-index: -1;
    line-height: 1;
    font-family: serif;
}

.reviewer-name {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
}

.reviewer-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-turq);
    font-weight: 800;
}

/* Navigation */
.reviews-nav {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.reviews-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-num {
    font-size: 12px;
    font-weight: 800;
    color: #333;
}

.reviews-arrows {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 5px;
    transition: color 0.3s ease;
}

.nav-arrow:hover {
    color: var(--accent-blue);
}

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

    .reviews-left {
        min-height: 400px;
    }

    .reviews-right {
        padding: 40px;
    }

    .review-quote {
        font-size: 24px;
    }
}

/* Source: sections_CSS/meeting-room.css */
/* Meeting Room Booking Section Styles */

.contact-section {
    padding: 120px 5%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    position: relative;
}

.contact-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.form-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-black);
    letter-spacing: -1px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: none;
    /* Site style uses uppercase for h1-h4, but leasing page uses mixed case for large titles. I'll stick to a more modern look. */
}

.form-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
    margin: 20px auto 0;
}

.nirvana-form {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.booking-section {
    padding: 4rem 0rem;
}

.form-grid {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
    width: 80%;
    justify-self: center;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    background-color: #fcfcfc;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.form-grid input:focus,
.form-grid select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(58, 95, 228, 0.05);
}

.booking-inputs {
    grid-column: span 2;
}

.booking-date-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    opacity: 0.7;
}

#time-field {
    grid-column: span 2;
}

.submit-btn {
    width: 100%;
    padding: 12px 30px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    max-width: 20rem;
    justify-self: center;
}

.submit-btn:hover {
    background-color: #2a4ec8;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 95, 228, 0.25);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 60px 5%;
    }

    .nirvana-form {
        padding: 40px 25px;
        border-radius: 20px;
    }

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

    .form-title {
        font-size: 2.2rem;
    }

    .booking-date-row {
        flex-direction: column;
        gap: 20px;
    }

    .booking-inputs,
    #time-field {
        grid-column: span 1;
    }
}

/* Source: sections_CSS/news.css */
/* News Section */
@media (max-width: 768px) {
    .news-order {
        display: flex;
        flex-flow: column-reverse;
    }
}

.news-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
    background: #fff;
    padding: 0 !important;
    overflow: hidden;
}

.news-left {
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
}

.news-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.news-left-content {
    position: relative;
    z-index: 2;
}

.news-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.news-badge::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent-turq);
}

.news-left h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -1px;
}

.news-left h2 span {
    display: block;
    font-weight: 400;
}

.news-right {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.news-card-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.news-card {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.news-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.news-quote {
    font-size: 26px;
    line-height: 1.3;
    color: #333;
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 120px;
    color: #f0f0f0;
    z-index: -1;
    line-height: 1;
    font-family: serif;
}

.newser-name {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 4px;
}

.newser-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-turq);
    font-weight: 800;
}

/* Navigation */
.news-nav {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.news-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-num {
    font-size: 12px;
    font-weight: 800;
    color: #333;
}

/* Ensure the container is visible */
.progress-container {
    width: 150px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    /* or #eee */
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-blue);
    width: 0%;
    /* REMOVE any 'transition' lines from here */
    /* Transition is now handled dynamically by JS */
}

/* For the News Image Fade effect */
#news-left-image {
    transition: opacity 0.5s ease-in-out;
}

.news-arrows {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 5px;
    transition: color 0.3s ease;
}

.nav-arrow:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
  .news-section.news-order {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-left {
    grid-row: 1; /* Puts the image/header section first */
    min-height: 400px;
  }

  .news-right {
    grid-row: 2; /* Puts the slider contents second */
    padding: 40px;
  }
}

@media (max-width: 992px) {

    .news-quote {
        font-size: 24px;
    }
}

/* Source: sections_CSS/contact.css */
/* Contact Page Specific Styles */

.contact-sections {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    /* min-h-[100svh] */
}

@media (min-width: 1024px) {
    .contact-sections {
        grid-template-columns: 1fr 1fr;
        /* lg:grid-cols-2 */
    }
}

.contact-info-panel {
    background-color: #3a5fe4;
    color: var(--color-white);
    padding: var(--spacing-4xl);
    /* p-12 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 9rem !important;
}

@media (min-width: 768px) {
    .contact-info-panel {
        padding: var(--spacing-5xl);
        padding-top: var(--spacing-7xl)
            /* md:p-20 */
    }
}

.contact-info-content {
    max-width: 28rem;
    /* max-w-md */
    margin: 0 auto;
    /* mx-auto */
    width: 100%;
    margin-left: 4rem !important;
    color: white;
}

@media (min-width: 1024px) {
    .contact-info-content {
        margin: 0;
        /* lg:mx-0 */
    }
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 4rem;
    /* mb-12 */
    color: var(--color-white);
    text-transform: uppercase;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* space-y-10 */
    font-size: 0.9375rem;
    /* 15px */
    font-weight: 300;
    /* font-light */
}

.contact-detail-label {
    color: var(--color-slate-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* tracking-widest */
    font-size: 0.6875rem;
    /* 11px */
    margin-bottom: 1rem;
    /* mb-2 */
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: white;
    padding: 4rem;
    /* p-12 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--color-border-light);
    padding-top: 9rem !important;
}

@media (min-width: 768px) {
    .contact-form-panel {
        padding: 5dvb;
        /* md:p-20 */
    }
}

.contact-form-content {
    max-width: 28rem;
    /* max-w-md */
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-form-content {
        margin: 0;
        /* lg:mx-0 */
    }
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark-charcoal);
    margin-bottom: 2rem;
}

.form-description {
    font-size: 0.875rem;
    /* 14px */
    color: #fff;
    margin-bottom: 3rem;
    /* mb-10 */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* space-y-6 */
    font-size: 0.875rem;
    /* 14px */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    /* gap-6 */
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input,
.form-textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #adb1c0;
    padding-top: 1rem;
    /* py-3 */
    padding-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    color: #000;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #adb1c0;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #3a5fe4;
}

.form-textarea {
    resize: vertical;
    /* Only allow vertical resize */
}

.form-submit-button {
    width: 100%;
    margin-top: 1rem;
    /* mt-4 */
    padding-top: 1rem;
    /* py-3 */
    padding-bottom: 1rem;
    background-color: #3a5fe4;
    color: white;
}

.form-subtitle {
    margin-bottom: 2rem;
}