/* ==========================================================================
   🧱 სექციის ბაზისი და პადინგები (60px)
   ========================================================================== */
.sec-three {
    background-color: #faf9f6;
    color: #1a1a1a;
    padding: 60px 0; /* პადინგი გასწორდა შენს მოთხოვნაზე */
    overflow: hidden;
    box-sizing: border-box;
}

.sec-three__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.sec-three__flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center; 
    justify-content: center; 
    gap: 30px;
}

/* 📝 მარცხენა მხარე */
.sec-three__info-side {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-three__header {
    text-align: center;
    max-width: 400px;
}

.sec-three__subtitle {
    display: block;
    font-family: 'BPG_Header', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a880;
    margin-bottom: 12px;
}

.sec-three__title {
    font-family: 'BPG_Header', sans-serif;
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.sec-three__description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaaaaa;
    margin: 0;
}

/* 🖼️ მარჯვენა მხარე - გადიდებული მაკეტის კონტეინერი */
.sec-three__graphic-side {
    flex: 1.4;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.building-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px; /* ზომა დარჩა იდეალური (650px) */
    height: auto;
}

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

.building-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   🎨 მონიშვნის ეფექტი კანტის (Stroke) გარეშე
   ========================================================================== */
.floor-shape {
    fill: rgba(255, 255, 255, 0.0);
    stroke: transparent;
    stroke-width: 0; 
    transition: fill 0.25s ease;
    cursor: pointer;
}

.floor-link:hover .floor-shape {
    fill: rgba(255, 255, 255, 0.35); 
}

/* ==========================================================================
   💬 პრემიუმ თულთიპის დიზაინი და "ფეთქვის" ანიმაცია
   ========================================================================== */
.premium-status-tooltip {
    position: absolute; 
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 0px;
    color: #ffffff;
    font-family: sans-serif;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: opacity 0.15s ease, visibility 0.15s ease;
    box-sizing: border-box;
}

.premium-status-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

.tooltip-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-family: 'BPG_Header';
}

.tooltip-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ⚪ თეთრი წერტილი "ფეთქვის" (Pulsing) ანიმაციით */
.status-pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

/* ქმნის ანიმაციის ეფექტს წერტილის გარშემო */
.status-pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff;
    border-radius: 50%;
    animation: statusPulse 1.8s infinite ease-in-out;
    opacity: 0.7;
}

.status-text {
    font-size: 0.7rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pulsing ანიმაციის პარამეტრები */
@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* ==========================================================================
   📱 რესპონსივი
   ========================================================================== */
@media (max-width: 768px) {
    .sec-three__flex-wrapper {
        flex-direction: column;
        gap: 25px;
    }
}