/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

:root {
    /* Colors */
    --primary-navy: #1a2e4a;
    --primary-blue: #2b5797;
    --accent-blue: #4a90d9;
    --light-blue: #6ba3e0;
    --highlight-blue: #90d4ff;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-light: #e8e8e8;
    --gray-medium: #888888;
    --text-dark: #333333;
    --text-muted: #666666;
    --footer-bg: #0f1a29;
    --overlay-light: rgba(216, 221, 227, 0.85);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 60px 20px;
}

html {
    scroll-behavior: smooth;
}

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

section {
    scroll-margin-top: 90px;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ==================== TOP BAR ==================== */
.top-bar {
    background-color: var(--primary-navy);
    height: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

/* ==================== HEADER ==================== */
.header {
    background-color: var(--white);
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-navy);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/pare-commercial-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 46, 74, 0.7) 0%,
        rgba(26, 46, 74, 0.5) 50%,
        rgba(26, 46, 74, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    width: 100%;
    color: var(--white);
    margin-bottom: 80px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Search Form */
.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 0.95rem;
    border: none;
    outline: none;
    font-family: var(--font-primary);
}

.search-input::placeholder {
    color: var(--gray-medium);
}

.search-input:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: -2px;
}

.search-btn {
    padding: 15px 20px;
    background-color: var(--primary-blue);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background-color: var(--accent-blue);
}

.search-btn svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background-color: var(--primary-blue);
    padding: 20px 25px;
    min-width: 200px;
    text-align: center;
    border-radius: 2px;
}

.stat-icon-img {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    filter: invert(1);
    mix-blend-mode: lighten;
    object-fit: contain;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.stat-sublabel {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.4;
}

.stat-sublabel .highlight {
    font-weight: 600;
    color: var(--highlight-blue);
}

/* Partner CTA */
.partner-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    backdrop-filter: blur(5px);
    flex-wrap: wrap;
}

.partner-cta p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--white);
    color: var(--primary-navy);
}

.btn:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-navy);
    border: 2px solid var(--white);
}

.btn-white:hover,
.btn-white:focus {
    background-color: transparent;
    color: var(--white);
}

.btn-outline-dark {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    background: transparent;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background-color: var(--primary-navy);
    color: var(--white);
}

.btn-outline-light {
    border: 1px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: var(--white);
    color: var(--primary-navy);
}

.btn-primary {
    border: 1px solid var(--white);
    color: var(--primary-navy);
    background: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: transparent;
    color: var(--white);
}

/* ==================== EXPERTS SECTION ==================== */
.experts-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.experts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.experts-content {
    text-align: left;
}

.experts-image {
    display: flex;
    justify-content: center;
}

.experts-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.experts-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.experts-tagline {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 25px;
}

.experts-text {
    text-align: left;
}

.experts-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.experts-text .text-highlight {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ==================== LISTINGS SECTION ==================== */
.listings-section {
    padding: var(--section-padding);
    background-color: #d8dde3;
    background-image: url('../images/pare-commercial-hero.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.listings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-light);
    z-index: 0;
}

.listings-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.listings-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.listing-card {
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.listing-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.listing-card:hover .listing-image::before {
    opacity: 1;
}

.listing-image .btn {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.listing-card:hover .listing-image .btn {
    opacity: 1;
    transform: translateY(0);
}

.listing-info {
    padding: 15px 20px;
    text-align: center;
}

.listing-address {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.listing-type {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-medium);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.listing-price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
}

/* ==================== MAP SECTION ==================== */
.map-section {
    background-color: var(--white);
}

.map-container {
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ==================== AGENTS SECTION ==================== */
.agents-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.agent-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.agent-image {
    width: 120px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.agent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.agent-info {
    flex: 1;
}

.agent-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.agent-specialty {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.agent-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.agent-card .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* ==================== MARKET PULSE TICKER ==================== */
.ticker-section {
    background: linear-gradient(135deg, #0f1a29 0%, #1a2e4a 100%);
    padding: 0;
    overflow: hidden;
}

.ticker-hero {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 26, 41, 0.95) 0%, rgba(26, 46, 74, 0.95) 100%);
    z-index: 2;
}

.ticker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ticker-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-blue);
}

.ticker-powered {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.ticker-powered a {
    color: inherit;
    text-decoration: none;
}

.ticker-powered a:hover {
    text-decoration: underline;
}

.ticker-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #4ade80;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.ticker-wrapper {
    overflow: hidden;
    padding: 15px 0 18px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 50px;
    animation: scroll 36s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 0 10px;
}

.ticker-type {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-navy);
    background: var(--accent-blue);
    padding: 4px 10px;
    border-radius: 3px;
    line-height: 1;
}

.ticker-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.ticker-price {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 3px;
    line-height: 1;
}

.ticker-price.sold {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.ticker-price.leased {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

/* ==================== CONNECT SECTION ==================== */
.connect-section {
    position: relative;
    min-height: 390px;
    background-image: url('../images/lets-connect-background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
}

.connect-content-half {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 46, 74, 0.85);
}

.connect-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.connect-tagline {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 10px;
    opacity: 0.9;
}

.connect-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* ==================== FOOTER CTA ==================== */
.footer-cta {
    background-color: var(--primary-navy);
    padding: 40px 20px;
    text-align: center;
}

.footer-cta h2 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--footer-bg);
    padding: 20px;
    text-align: center;
}

.footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

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

/* Tablet */
@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 80px;
        background-attachment: scroll;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }

    .partner-cta {
        flex-direction: column;
        text-align: center;
    }

    .partner-cta p {
        text-align: center;
    }

    .experts-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .experts-content {
        text-align: center;
        order: 1;
    }

    .experts-image {
        order: 2;
    }

    .agent-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .agents-grid {
        gap: 50px;
    }

    .listings-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .connect-content-half {
        width: 100%;
        min-height: 250px;
    }
}

@media (hover: none) {
    .listing-image::before {
        opacity: 1;
    }

    .listing-image .btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .menu-toggle span,
    .search-btn,
    .listing-image::before,
    .listing-image .btn,
    .btn {
        transition: none;
    }

    .hero {
        background-attachment: scroll;
    }

    .ticker-track {
        animation: none;
    }

    .pulse-dot {
        animation: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }

    .hero h1 {
        letter-spacing: 2px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-input {
        padding: 12px 15px;
    }

    .search-btn {
        padding: 12px;
    }

    .stat-box {
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

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

/* Large screens */
@media (min-width: 1200px) {
    .stats-row {
        gap: 30px;
    }

    .stat-box {
        min-width: 220px;
        padding: 25px 30px;
    }
}

/* ==================== LISTING MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 41, 0.9);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: var(--white);
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

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

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--primary-navy);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Gallery */
.modal-gallery {
    background: #f0f0f0;
}

.gallery-main {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
}

.gallery-thumbs {
    display: flex;
    gap: 5px;
    padding: 5px;
    background: var(--primary-navy);
}

.gallery-thumb {
    flex: 1;
    height: 70px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    overflow: hidden;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Details */
.modal-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-header {
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 20px;
}

.modal-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--accent-blue);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.modal-location {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-navy);
}

/* Metrics */
.modal-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: var(--off-white);
    padding: 20px;
    border-radius: 6px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 3px;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
.modal-section h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

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

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* Actions */
.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.modal-btn {
    flex: 1;
    text-align: center;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 250px;
    }

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

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

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