/* Floor Plans Section */
.floor-plans-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.floor-plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.floor-plans-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.floor-plans-badge {
    display: inline-block;
    background: #9B773B;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.floor-plans-main-title {
    font-size: 4.5rem;
    font-weight: 600;
    color: #9B773B;
    margin-bottom: 25px;
    line-height: 1.1;
    overflow: hidden;
    font-family: 'Gilroy', sans-serif;
    letter-spacing: -1px;
}

.floor-plans-main-title span {
    display: inline-block;
    transform: translateY(80px);
    opacity: 0;
}



.floor-plans-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.floor-plans-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.floor-plan-tab {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.floor-plan-tab:hover,
.floor-plan-tab.active {
    background: #9B773B;
    border-color: #9B773B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 119, 59, 0.3);
}

.floor-plan-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.floor-plan-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.floor-plan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.floor-plan-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.floor-plan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.floor-plan-overlay * {
    color: white !important;
}

.floor-plan-image:hover .floor-plan-overlay {
    transform: translateY(0);
}

.plan-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.carpet-area-statement h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: white;
}

.area-table {
    font-size: 0.8rem;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.table-header {
    font-weight: 700;
    color: white;
}

.table-row span {
    text-align: center;
}

.floor-plan-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.unit-options {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.unit-tab {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.unit-tab:hover,
.unit-tab.active {
    background: #9B773B;
    border-color: #9B773B;
    color: white;
}

.unit-details {
    display: none;
}

.unit-details.active {
    display: block;
}

.penthouse-note {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #57401a;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.penthouse-note p {
    margin: 0;
    color: #495057;
    font-size: 1rem;
}

.penthouse-note strong {
    color: #57401a;
    font-weight: 700;
}

.plan-specs {
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.spec-label::before {
    display: none !important;
    content: none !important;
}

.spec-value {
    font-weight: 700;
    color: #57401a;
    font-size: 1rem;
}

.plan-inquiry-btn {
    background: #9B773B;
    color: white;
    border: 2px solid #9B773B;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.plan-inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 119, 59, 0.4);
    background: #8b6914;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floor-plans-section {
        padding: 60px 0;
    }
    
    .floor-plans-main-title {
        font-size: 2rem;
    }
    
    .floor-plans-tabs {
        gap: 10px;
    }
    
    .floor-plan-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .floor-plan-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .floor-plan-details h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .plan-inquiry-btn {
        width: 100%;
        padding: 12px 30px;
    }
    
    .unit-options {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .unit-tab {
        width: 100%;
        max-width: 200px;
        text-align: center;
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: repeat(3, 1fr);
        font-size: 0.7rem;
    }
}