﻿:root {
    /* Brand Colors */
    --primary-color: #353D45;
    /* Dark Blue-Grey / Charcoal */
    --secondary-color: #BAA993;
    /* Bez / Gold Accent */
    --text-color: #7A7A7A;
    /* Body Text */
    --text-dark: #54595F;
    /* Headings */
    --bg-light: #F9F9F9;
    --white: #FFFFFF;

    /* UI Variables */
    --radius-md: 8px;
    --radius-lg: 12px;
    --header-height: 80px;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

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

/* ---------------------------------------------------
   1. HEADER
--------------------------------------------------- */
.main-header {
    background-color: var(--primary-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
    height: 45px;
    /* Logo height */
    width: auto;
    display: block;
}

.desktop-nav .nav-link {
    color: rgb(33 37 41);
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s;
    font-size: 1rem;
}

.desktop-nav .nav-link:hover {
    color: var(--secondary-color);
}

.header-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 2rem;
    transition: background 0.3s;
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Offcanvas Left (Main Menu) */
.offcanvas-header {
    background-color: var(--primary-color);
    color: white;
}

.offcanvas-title {
    font-weight: 700;
}

.btn-close-white {
    filter: invert(1);
}

.offcanvas-body .nav-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.offcanvas-contact {
    margin-top: 2rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

/* ---------------------------------------------------
   2. HERO SLIDER
--------------------------------------------------- */
.hero-slider {
    margin-bottom: 2rem;
}

.carousel-item {
    height: 600px;
    background-color: #333;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 25%;
    left: 10%;
    right: 10%;
    text-align: left;
}

.slider-badge {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slider-desc {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* ---------------------------------------------------
   3. CONTENT
--------------------------------------------------- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.filter-wrapper {
    margin-bottom: 2rem;
    white-space: nowrap;
}

.filter-btn {
    border: 1px solid #ddd;
    background: transparent;
    color: var(--text-dark);
    padding: 8px 24px;
    border-radius: 30px;
    margin-right: 10px;
}

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

.project-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
}

/* Keep home-page project card content aligned when text lengths differ. */
.home-project-card-body {
    min-width: 0;
}

.home-project-card-title {
    min-height: 2.7em;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home-project-card-location {
    min-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-project-card-desc {
    min-height: 2.7em;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.proj-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.proj-loc {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.proj-features {
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ---------------------------------------------------
   4. FOOTER
--------------------------------------------------- */
.site-footer {
    background-color: #212529;
    color: #aaa;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.footer-links li a {
    color: #aaa;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

/* ---------------------------------------------------
   5. PROPOSAL OFFCANVAS (Right Side - FÃ¼me)
--------------------------------------------------- */
.proposal-offcanvas {
    background-color: #353D45;
    color: #ffffff;
}

.proposal-offcanvas .offcanvas-header {
    justify-content: flex-end;
}

.proposal-offcanvas .btn-close-white {
    filter: invert(1);
    opacity: 0.8;
}

.proposal-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.proposal-desc {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Call Back Form */
.callback-form-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.callback-form-wrapper h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #BAA993;
    margin-bottom: 10px;
}

.callback-form-wrapper input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.callback-form-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.callback-form-wrapper input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #BAA993;
    color: white;
    box-shadow: none;
}

.callback-form-wrapper .btn-primary {
    background-color: #BAA993;
    border-color: #BAA993;
    color: #353D45;
    font-weight: 700;
    width: 100%;
}

.callback-form-wrapper .btn-primary:hover {
    background-color: #fff;
    color: #353D45;
}

/* Contact Buttons */
.contact-row-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.contact-row-btn:hover {
    background-color: #BAA993;
    border-color: #BAA993;
    color: #353D45;
}

.contact-row-btn:hover .icon-box {
    background-color: #353D45;
    color: #BAA993;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 15px;
    color: #BAA993;
    transition: all 0.3s;
}

.contact-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-value {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}


@media (max-width: 991px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    .carousel-item {
        height: 450px;
    }

    .carousel-caption {
        bottom: 15%;
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .slider-title {
        font-size: 2rem;
    }

    .slider-desc {
        display: none;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---------------------------------------------------
   7. PROJECT DETAIL PAGE
--------------------------------------------------- */
.project-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.project-hero-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    color: white;
}

/* Feature Icons Grid */
.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Floor Plans (Custom Tabs) */
.plan-tabs .nav-link {
    color: var(--primary-color);
    background: white;
    border: 1px solid #dee2e6;
    margin-bottom: 5px;
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-tabs .nav-link:hover {
    background: #f8f9fa;
    border-color: #BAA993;
}

.plan-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.plan-tabs .nav-link i {
    opacity: 0.5;
    transition: 0.3s;
}

.plan-tabs .nav-link.active i {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.floor-plan-img {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.floor-plan-img:hover {
    transform: scale(1.02);
    cursor: zoom-in;
}

/* Room List */
.room-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
}

.room-list li:last-child {
    border-bottom: none;
}

.room-list span:first-child {
    font-weight: 500;
    color: var(--primary-color);
}

.room-list span:last-child {
    color: #888;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.agent-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    overflow: hidden;
    border-top: 5px solid var(--secondary-color);
}

/* Gallery Grid */
.detail-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: opacity 0.3s;
}

.detail-gallery img:hover {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-up {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-name: fadeInUp;
}


/* ---------------------------------------------------
   8. UNIT SELECTION / INVENTORY MODULE
--------------------------------------------------- */
.inventory-section {
    margin-bottom: 4rem;
}

/* Filter Bar (Dark Top) */
.inventory-filter {
    background-color: var(--primary-color);
    /* Füme */
    color: white;
    padding: 25px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.filter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #BAA993;
    /* Gold Text */
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.room-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    width: 35px;
    height: 35px;
    margin-right: 5px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.room-btn:hover,
.room-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: bold;
}

/* Custom Range Input Styling */
.form-range::-webkit-slider-thumb {
    background: var(--secondary-color);
}

.form-range::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.2);
}

/* Unit List Rows */
.inventory-list {
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background-color: #fdfbf7;
    /* Very light beige/warm white */
}

.unit-row {
    padding: 25px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.unit-row:last-child {
    border-bottom: none;
}

.unit-row:hover {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
    position: relative;
    transform: scale(1.01);
}

.unit-number {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary-color);
}

.unit-floor {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.unit-info-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}

.unit-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.unit-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    text-align: right;
}

.btn-detail-gold {
    background-color: #8c7b64;
    /* Darker Gold/Bronze from image */
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-detail-gold:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-pdf-dark {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-pdf-dark:hover {
    background-color: black;
}


/* FORCE STICKY SIDEBAR OVERRIDE */
.sticky-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px !important;
    z-index: 100 !important;
    align-self: flex-start !important;
}


/* STICKY FIX v2 */
body,
html {
    overflow-x: visible !important;
    /* Allow sticky to work */
}

.sticky-sidebar {
    position: -webkit-sticky !important;
    /* Safari */
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
    /* Essential */
    display: block !important;
}

/* Ensure the parent column has height */
.row {
    align-items: flex-start;
    /* Default stretch prevents sticky sometimes, but flex-start is safer for sticky children */
}


/* ---------------------------------------------------
   9. ADVANCED UNIT ROW (Ref: Image Layout)
--------------------------------------------------- */
.unit-row-advanced {
    padding: 30px;
    background-color: #fdfbf7;
    /* Light Warm Beige Background */
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.unit-row-advanced:hover {
    background-color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    z-index: 2;
    position: relative;
}

/* Col 1: Number */
.unit-label-small {
    font-size: 0.7rem;
    color: #BAA993;
    /* Gold */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.unit-no-large {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.unit-floor-label {
    font-size: 0.9rem;
    color: #888;
}

/* Col 2: Specs List */
.unit-type-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
    width: 100%;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.spec-label {
    color: #888;
    font-weight: 500;
}

.spec-value {
    color: #333;
    font-weight: 600;
}

/* Col 3: Image */
.unit-plan-thumb {
    width: 120px;
    height: auto;
    opacity: 0.8;
    transition: 0.3s;
    mix-blend-mode: multiply;
    /* Blends nicely with beige bg */
}

.unit-row-advanced:hover .unit-plan-thumb {
    opacity: 1;
    transform: scale(1.1);
}

/* Col 4: Price & Buttons */
.price-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    text-align: right;
    margin-bottom: 15px;
}

.btn-row-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
    border-radius: 0;
    /* Sharp edges like image */
    transition: 0.3s;
}

.btn-gold-solid {
    background-color: #8c7b64;
    color: white;
    border: none;
}

.btn-gold-solid:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-dark-solid {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-dark-solid:hover {
    background-color: black;
}


/* 10. ROW STATUS BADGES */
.unit-row-advanced {
    position: relative;
    /* For absolute badge */
    overflow: hidden;
    /* To clip corner badges if strictly corner */
}

.status-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    border-bottom-right-radius: 10px;
    z-index: 5;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.status-active {
    background-color: #28a745;
}

/* Green */
.status-available {
    background-color: #28a745;
}

/* Green */
.status-reserved {
    background-color: #fd7e14;
}

/* Orange */
.status-sold {
    background-color: #dc3545;
}

/* Red */
.status-planned {
    background-color: #0dcaf0;
}

/* Info */
.status-completed {
    background-color: #6c757d;
}

/* Secondary */

/* Sold Row Opacity */
.unit-row-sold {
    opacity: 0.6;
    background-color: #f0f0f0;
    filter: grayscale(1);
}

.unit-row-sold:hover {
    transform: none;
    /* No lift effect for sold items */
    box-shadow: none;
    background-color: #f0f0f0;
}


/* ---------------------------------------------------
   11. UNIT DETAIL PAGE (Ref: Image Design)
--------------------------------------------------- */
.unit-detail-container {
    background-color: #fdfbf7;
    min-height: 85vh;
    display: flex;
    align-items: stretch;
    position: relative;
}

/* LEFT SIDEBAR INFO */
.unit-info-panel {
    background-color: #fdfbf7;
    /* Matching bg */
    border-right: 1px solid #e0e0e0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.btn-back-custom {
    border: 1px solid #333;
    background: white;
    color: #333;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 8px 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 40px;
    transition: 0.3s;
    width: fit-content;
}

.btn-back-custom:hover {
    background: #333;
    color: #FFF;
}

.unit-title-lg {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: #333;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}

.unit-subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* 3-Col Specs Grid */
.detail-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    margin-bottom: 30px;
}

.ds-val {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.ds-lbl {
    font-size: 0.8rem;
    color: #888;
}

/* Rooms List */
.rooms-list-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.rooms-scroll-area {
    flex-grow: 1;
    /* Fills available space */
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
    max-height: 300px;
}

/* Custom Scrollbar */
.rooms-scroll-area::-webkit-scrollbar {
    width: 4px;
}

.rooms-scroll-area::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.room-item-card {
    background: white;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.room-number-circle {
    width: 25px;
    height: 25px;
    background-color: #8c7b64;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.room-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    display: block;
}

.room-area {
    font-size: 0.8rem;
    color: #888;
}

/* Bottom Action Area */
.detail-price-box {
    margin-top: auto;
    padding-top: 20px;
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* RIGHT SIDE PLAN VIEWER */
.unit-plan-viewer {
    background-color: #faf8f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.main-plan-img {
    max-width: 80%;
    max-height: 80vh;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Floating Elements */
.compass-box {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
}

.keyplan-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 100px;
    opacity: 0.7;
}

.facade-box {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 100px;
    opacity: 0.7;
}


/* ---------------------------------------------------
   12. ABOUT US PAGE (Kurumsal)
--------------------------------------------------- */
.about-hero {
    height: 60vh;
    background-image: var(--about-hero-bg, url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop'));
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Overlay */
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

/* Intro Text */
.about-lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}

/* Stats Row */
.about-stat-box {
    text-align: center;
    padding: 30px;
    border-right: 1px solid #eee;
}

.about-stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Values Grid */
.value-card {
    background: white;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    /* Gold */
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* CEO Quote / Signature */
.quote-section {
    background-color: var(--primary-color);
    /* Dark Sidebar color */
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-icon-bg {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 10rem;
    opacity: 0.05;
    color: white;
}

.quote-text {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: 'Times New Roman', serif;
    /* Classic serif for quotes */
}

.quote-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* ---------------------------------------------------
   13. CONTACT PAGE (letişim)
--------------------------------------------------- */
.contact-header {
    padding: 100px 0 60px;
    background: #fdfbf7;
    /* Light Beige background */
    text-align: center;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #777;
    font-size: 1.1rem;
}

/* Info Cards */
.contact-info-card {
    padding: 40px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eee;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.contact-icon-lg {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.contact-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.contact-value {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    text-decoration: none;
}

/* Modern Form */
.contact-form-section {
    background: white;
    padding: 80px 0;
}

.modern-form-input {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 20px 0;
    font-size: 1.1rem;
    background: transparent;
    transition: 0.3s;
}

.modern-form-input:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
    background: transparent;
}

.modern-form-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-top: 20px;
}

/* Grayscale Map */
.contact-map-wrapper {
    width: 100%;
    height: 500px;
    filter: grayscale(100%) invert(5%) contrast(85%);
    /* Dark cinematic map look */
    transition: 0.5s;
}

.contact-map-wrapper:hover {
    filter: grayscale(0%);
    /* Color on hover */
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ---------------------------------------------------
   14. NEWS PAGE (Haberler)
--------------------------------------------------- */
.news-header {
    background: #fdfbf7;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

/* Featured News Card */
.featured-news-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    /* Fixed height for impact */
    display: flex;
    align-items: flex-end;
    color: white;
    transition: transform 0.4s ease;
}

.featured-news-card:hover .featured-bg {
    transform: scale(1.05);
    /* Subtle zoom */
}

.featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    z-index: 2;
}

.featured-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    max-width: 800px;
}

.news-badge {
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

/* Standard News Card */
.news-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
}

.news-thumb-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-thumb {
    transform: scale(1.1);
}

.news-body {
    padding: 25px;
}

.news-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-color);
}

.news-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.news-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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


/* ---------------------------------------------------
   15. NEWS DETAIL PAGE (Haber Detay)
--------------------------------------------------- */
.news-detail-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    color: white;
}

.news-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

.news-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.article-meta {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 20px;
    display: inline-block;
}

.article-meta span {
    margin: 0 10px;
}

/* Article Body */
.article-container {
    max-width: 800px;
    /* Optimal reading width */
    margin: -50px auto 0;
    background: white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body h2,
.article-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.article-quote {
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 40px 0;
    font-family: 'Times New Roman', serif;
}

.article-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

/* Share Buttons */
.share-section {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* Related News */
.related-news-section {
    background: #fdfbf7;
    padding: 80px 0;
}


/* ---------------------------------------------------
   16. NEW INDEX PAGE STYLES (Cinematic & Architectural)
--------------------------------------------------- */

/* Header Transparent Overlay */
.header-transparent {
    box-shadow: none !important;
    padding-top: 25px;
    padding-bottom: 25px;
}

.header-transparent .nav-link {
    color: white !important;
}

.header-transparent .header-logo {
    filter: brightness(0) invert(1);
    /* Logo white */
}

.main-header.scrolled {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-700 {
    animation-delay: 0.7s;
}

/* Hero Typography */
.text-stroke {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.05);
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.hero-title {
    line-height: 1.1;
    letter-spacing: -1px;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-4 {
    letter-spacing: 4px;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Showy Project Cards */
.project-showcase-card {
    display: block;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.project-showcase-card img {
    transition: transform 1s ease;
}

.project-showcase-card:hover img {
    transform: scale(1.1);
}

.project-showcase-card .badge {
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 12px;
}

.project-reveal {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(120%);
    /* Hidden right */
}

.project-showcase-card:hover .project-reveal {
    transform: translateX(0);
    /* Slide in */
}

/* Gradients */
.bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0));
}

/* Button Hovers */
.btn-hover-gold {
    transition: all 0.3s ease;
}

.btn-hover-gold:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.shadow-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.group-hover\:scale-110:hover {
    transform: scale(1.1);
}

/* Tailwind utility mimic */

/* Architectural Typography */
.typo-architectural {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* FIX: Ensure mobile toggle is visible on white header */
.main-header.scrolled .mobile-toggle,
.main-header.scrolled .d-lg-none .dropdown-toggle,
.main-header.scrolled .mobile-proposal-btn {
    color: var(--primary-color) !important;
}

/* Mobile Menu Text Color Override */
#mobileMenu .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* Scroll State Fixes */
.main-header.scrolled .mobile-toggle {
    color: var(--primary-color) !important;
}

.main-header.scrolled .d-lg-none .dropdown-toggle {
    color: var(--primary-color) !important;
}

/* ==========================================================================
   ADDED FROM projeler.php
   ========================================================================== */
.page-header-bg {
    background-color: var(--primary-color);
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

/* ==========================================================================
   ADDED FROM projedetay.php
   ========================================================================== */
#sidebar-col {
    position: relative;
    height: 100%;
}

#sidebar-wrapper {
    position: relative;
    width: 100%;
    z-index: 99;
}

#sidebar-wrapper.is-fixed {
    position: fixed;
    top: 130px;
}

#sidebar-wrapper.is-bottom {
    position: absolute;
    bottom: 0;
    top: auto !important;
}

/* ==========================================================================
   ADDED FROM proje-daireler.php
   ========================================================================== */
.filter-sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 90;
}

.filter-sidebar-card {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 20px;
    width: 100%;
}

.form-label-gold {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.sticky-row {
    align-items: stretch;
}

/* ==========================================================================
   ADDED FROM projeler.php
   ========================================================================== */
.page-header-bg {
    background-color: var(--primary-color);
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

/* ==========================================================================
   ADDED FROM projedetay.php
   ========================================================================== */
#sidebar-col {
    position: relative;
    height: 100%;
}

#sidebar-wrapper {
    position: relative;
    width: 100%;
    z-index: 99;
}

#sidebar-wrapper.is-fixed {
    position: fixed;
    top: 130px;
}

#sidebar-wrapper.is-bottom {
    position: absolute;
    bottom: 0;
    top: auto !important;
}

/* ==========================================================================
   ADDED FROM proje-daireler.php
   ========================================================================== */
.filter-sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    z-index: 90;
}

.filter-sidebar-card {
    background: white;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 20px;
    width: 100%;
}

.form-label-gold {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.sticky-row {
    align-items: stretch;
}

/* ==========================================================================
   ADDED FROM kako-kupiti.php
   ========================================================================== */
.buy-hero {
    background-color: var(--secondary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.buy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40vw 100vh 0;
    border-color: transparent var(--primary-color) transparent transparent;
    opacity: 0.9;
    z-index: 1;
    display: none;
}

@media (min-width: 992px) {
    .buy-hero::after {
        display: block;
    }
}

.buy-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.buy-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
    display: inline-block;
    padding: 5px 20px;
    margin-top: 10px;
}

.timeline-section {
    padding: 80px 0;
    position: relative;
}

.timeline-section.dark {
    background-color: var(--primary-color);
    color: var(--white);
}

.timeline-section.light {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.timeline-icon-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-section.dark .timeline-icon-circle {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.timeline-section.light .timeline-icon-circle {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.timeline-icon-circle:hover {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.step-desc {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    top: -40px;
    left: 0;
    line-height: 1;
}

/* ==========================================================================
   ADDED FROM daire-detay.php
   ========================================================================== */
/* --- DESKTOP FIRST (Fixed Full Screen App-Like) --- */
/* Scoped to avoid breaking other pages */
body.unit-detail-page {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    /* Desktop default: No body scroll */
}

/* Page wrapper inside */
.unit-detail-page .page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.unit-detail-container {
    flex: 1 1 auto;
    overflow: hidden;
    display: flex;
    background-color: #fdfbf7;
    width: 100%;
}

/*
.main-header, .site-footer {
    flex: 0 0 auto;
}
*/
/* The above might affect common elements if not careful. 
   But flex: 0 0 auto is usually safe for header/footer in a flex column container.
*/
.unit-detail-page .main-header,
.unit-detail-page .site-footer {
    flex: 0 0 auto;
}

.detail-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

/* Desktop Layout Columns */
.col-info-panel {
    height: 100%;
    min-width: 350px;
    width: 30%;
    order: 1;
    border-right: 1px solid #e0e0e0;
}

.col-plan-viewer {
    height: 100%;
    flex-grow: 1;
    order: 2;
}

/* Desktop Info Panel Internals */
.unit-info-panel {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.rooms-scroll-area {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    margin-bottom: 20px;
}

.unit-plan-viewer {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.main-plan-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

/* Floating Tools */
.compass-box {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
}

.keyplan-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    opacity: 0.7;
}

.facade-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    opacity: 0.7;
}


/* --- MOBILE OVERRIDES (Enable Scrolling) --- */
@media (max-width: 991.98px) {

    /* Enable Body Scroll */
    body.unit-detail-page {
        height: auto !important;
        overflow-y: auto !important;
        overflow-x: hidden;
    }

    .unit-detail-page .page-wrapper {
        height: auto !important;
        display: block;
    }

    .unit-detail-container {
        height: auto !important;
        display: block;
        overflow: visible;
    }

    .detail-row {
        flex-direction: column;
        height: auto;
    }

    /* TOP: Image Area (Fixed Height visually, but scrolls away) */
    .col-plan-viewer {
        height: 40vh;
        /* Takes 40% of viewport height initially */
        min-height: 300px;
        width: 100%;
        order: 1;
        /* Shows first */
        border-bottom: 1px solid #ddd;
    }

    /* BOTTOM: Info Area (Natural Height) */
    .col-info-panel {
        height: auto !important;
        width: 100%;
        order: 2;
        border: none;
    }

    .unit-info-panel {
        height: auto !important;
        overflow: visible !important;
        display: block;
        /* Remove flex column behavior on mobile to let it flow */
    }

    .rooms-scroll-area {
        overflow: visible;
        /* No internal scroll, just page scroll */
        flex: none;
        max-height: none;
    }

    .unit-title-lg {
        font-size: 2.5rem;
    }

    .btn-back-custom {
        display: inline-block;
        padding: 5px 10px;
        margin-bottom: 15px;
        font-size: 0.6rem;
    }

    /* Adjust price box to just sit at bottom of content */
    .detail-price-box {
        margin-top: 30px;
    }
}



.hero-overlay-glow {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    padding: 4rem 2rem;
}

/* Mobile Feature Box Adjustments */
@media (max-width: 576px) {
    .feature-box {
        padding: 1rem 0.5rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-box h6 {
        font-size: 0.8rem;
    }

    .unit-orientation-badge img {
        width: 60px;
        height: 60px;
    }
}
